ILookupService.cs 756 B

1234567891011121314151617181920212223242526
  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<CityDto>> GetCityByCountry(long CountryId);
  13. Task<List<CountryDto>> CreateCountries();
  14. Task<List<IndustryDto>> GetAllIndustries();
  15. Task<List<JobTitleDto>> GetAllJobTitles();
  16. Task<List<UniversityDto>> GetAllUniversities();
  17. Task<List<QualificationDto>> GetAllQualifications();
  18. Task<List<UserTaskStatusDto>> GetAllUserTaskStatus();
  19. }
  20. }