IOrderProductionsApplicationService.cs 570 B

123456789101112131415161718192021
  1. using System.Threading.Tasks;
  2. using Abp.Application.Services.Dto;
  3. using IwbZero.AppServiceBase;
  4. using ShwasherSys.ProductionOrderInfo.Dto;
  5. namespace ShwasherSys.ProductionOrderInfo
  6. {
  7. public interface IOrderProductionAppService : IIwbZeroAsyncCrudAppService<OrderProductionDto, int, IwbPagedRequestDto, OrderProductionCreateDto, OrderProductionUpdateDto >
  8. {
  9. #region Get
  10. Task<OrderProduction> GetEntity(EntityDto<int> input);
  11. Task<OrderProduction> GetEntityById(int id);
  12. Task<OrderProduction> GetEntityByNo(string no);
  13. #endregion
  14. }
  15. }