You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuan/Myshipping.Core/Service/Emp/ISysEmpExtOrgPosService.cs

15 lines
491 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
namespace Myshipping.Core.Service;
public interface ISysEmpExtOrgPosService
{
Task AddOrUpdate(long empId, List<EmpExtOrgPosOutput> extIdList);
Task DeleteEmpExtInfoByUserId(long empId);
Task<List<EmpExtOrgPosOutput>> GetEmpExtOrgPosList(long empId);
Task<List<EmpExtOrgPosOutput>> GetEmpExtOrgPosList(List<long> empIds);
Task<bool> HasExtOrgEmp(long orgId);
Task<bool> HasExtPosEmp(long posId);
}