IScrapEnterStoresApplicationService.cs 644 B

123456789101112131415161718192021222324
  1. using System.Threading.Tasks;
  2. using Abp.Application.Services.Dto;
  3. using IwbZero.AppServiceBase;
  4. using ShwasherSys.ScrapStore.Dto;
  5. namespace ShwasherSys.ScrapStore
  6. {
  7. public interface IScrapEnterStoreAppService : IIwbZeroAsyncCrudAppService<ScrapEnterStoreDto, string, IwbPagedRequestDto, ScrapEnterStoreCreateDto, ScrapEnterStoreUpdateDto >
  8. {
  9. #region Get
  10. Task<ScrapEnterStore> GetEntity(EntityDto<string> input);
  11. Task<ScrapEnterStore> GetEntityById(string id);
  12. Task<ScrapEnterStore> GetEntityByNo(string no);
  13. #endregion
  14. Task<PagedResultDto<ViewScrapEnterStore>> GetViewAll(IwbPagedRequestDto input);
  15. }
  16. }