| 123456789101112131415161718192021 |
- using System.Threading.Tasks;
- using Abp.Application.Services.Dto;
- using IwbZero.AppServiceBase;
- using WePlatform.WeModel.Target.Dto;
- namespace WePlatform.WeModel.Target
- {
- public interface IEvalTargetAppService : IIwbZeroAsyncCrudAppService<EvalTargetDto, string, IwbPagedRequestDto, EvalTargetCreateDto, EvalTargetUpdateDto >
- {
- #region Get
- Task<EvalTargetInfo> GetEntity(EntityDto<string> input);
- Task<EvalTargetInfo> GetEntityById(string id);
- Task<EvalTargetInfo> GetEntityByNo(string no);
-
- #endregion
- }
- }
|