IOutFactorysApplicationService.cs 459 B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using System.Web.Mvc;
  4. using IwbZero.AppServiceBase;
  5. using ShwasherSys.BasicInfo.OutFactory.Dto;
  6. namespace ShwasherSys.BasicInfo.OutFactory
  7. {
  8. public interface IOutFactoryAppService : IIwbAsyncCrudAppService<OutFactoryDto, string, PagedRequestDto, OutFactoryCreateDto, OutFactoryUpdateDto >
  9. {
  10. Task<List<SelectListItem>> GetSelectList();
  11. Task<string> GetSelectStr();
  12. }
  13. }