ICurrentRmStoreHousesApplicationService.cs 787 B

1234567891011121314151617181920212223242526
  1. using System.Threading.Tasks;
  2. using Abp.Application.Services.Dto;
  3. using IwbZero.AppServiceBase;
  4. using ShwasherSys.RmStore.Dto;
  5. namespace ShwasherSys.RmStore
  6. {
  7. public interface ICurrentRmStoreHouseAppService : IIwbZeroAsyncCrudAppService<CurrentRmStoreHouseDto, string, IwbPagedRequestDto, CurrentRmStoreHouseCreateDto, CurrentRmStoreHouseUpdateDto >
  8. {
  9. #region Get
  10. Task<CurrentRmStoreHouse> GetEntity(EntityDto<string> input);
  11. Task<CurrentRmStoreHouse> GetEntityById(string id);
  12. Task<CurrentRmStoreHouse> GetEntityByNo(string no);
  13. #endregion
  14. Task<PagedResultDto<ViewCurrentRmStoreHouse>> GetAllView(IwbPagedRequestDto input);
  15. Task<RmEnterStore> AddEnter(AddRmEnterStore input);
  16. Task<RmOutStore> AddOut(AddRmOutStoreDto input);
  17. }
  18. }