| 123456789101112131415161718192021 |
- using System.Threading.Tasks;
- using Abp.Application.Services.Dto;
- using IwbZero.AppServiceBase;
- using WePlatform.WeModel.Component.Dto;
- namespace WePlatform.WeModel.Component
- {
- public interface IEngineComponentAppService : IIwbZeroAsyncCrudAppService<EngineComponentDto, string, IwbPagedRequestDto, EngineComponentCreateDto, EngineComponentUpdateDto >
- {
- #region Get
- Task<EngineComponentInfo> GetEntity(EntityDto<string> input);
- Task<EngineComponentInfo> GetEntityById(string id);
- Task<EngineComponentInfo> GetEntityByNo(string no);
-
- #endregion
- }
- }
|