IEngineComponentApplicationService.cs 585 B

123456789101112131415161718192021
  1. using System.Threading.Tasks;
  2. using Abp.Application.Services.Dto;
  3. using IwbZero.AppServiceBase;
  4. using WePlatform.WeModel.Component.Dto;
  5. namespace WePlatform.WeModel.Component
  6. {
  7. public interface IEngineComponentAppService : IIwbZeroAsyncCrudAppService<EngineComponentDto, string, IwbPagedRequestDto, EngineComponentCreateDto, EngineComponentUpdateDto >
  8. {
  9. #region Get
  10. Task<EngineComponentInfo> GetEntity(EntityDto<string> input);
  11. Task<EngineComponentInfo> GetEntityById(string id);
  12. Task<EngineComponentInfo> GetEntityByNo(string no);
  13. #endregion
  14. }
  15. }