| 123456789101112131415161718192021 |
- using System.Threading.Tasks;
- using Abp.Application.Services.Dto;
- using IwbZero.AppServiceBase;
- using ShwasherSys.ProductionOrderInfo.Dto;
- namespace ShwasherSys.ProductionOrderInfo
- {
- public interface IOrderProductionAppService : IIwbZeroAsyncCrudAppService<OrderProductionDto, int, IwbPagedRequestDto, OrderProductionCreateDto, OrderProductionUpdateDto >
- {
- #region Get
- Task<OrderProduction> GetEntity(EntityDto<int> input);
- Task<OrderProduction> GetEntityById(int id);
- Task<OrderProduction> GetEntityByNo(string no);
-
- #endregion
- }
- }
|