ILookupService.cs 513 B

1234567891011121314151617181920
  1. 
  2. using MTWorkHR.Application.Models;
  3. using MTWorkHR.Core.Entities;
  4. using System.Threading.Tasks;
  5. namespace MTWorkHR.Application.Services.Interfaces
  6. {
  7. public interface ILookupService
  8. {
  9. Task<List<OrderTypeDto>> GetAllOrderType();
  10. Task<List<LeaveTypeDto>> GetAllLeaveType();
  11. Task<List<CountryDto>> GetAllCountries();
  12. Task<List<CountryDto>> CreateCountries();
  13. Task<List<IndustryDto>> GetAllIndustries();
  14. Task<List<JobTitleDto>> GetAllJobTitles();
  15. }
  16. }