IEvalModelApplicationService.cs 533 B

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