IDutysApplicationService.cs 358 B

12345678910111213
  1. using System.Collections.Generic;
  2. using IwbZero.AppServiceBase;
  3. using ShwasherSys.BasicInfo.Dutys.Dto;
  4. using System.Web.Mvc;
  5. namespace ShwasherSys.BasicInfo.Dutys
  6. {
  7. public interface IDutysAppService : IIwbAsyncCrudAppService<DutyDto, int, PagedRequestDto, DutyCreateDto, DutyUpdateDto >
  8. {
  9. List<SelectListItem> GetDutysSelects();
  10. }
  11. }