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 { #region Get Task GetEntity(EntityDto input); Task GetEntityById(string id); Task GetEntityByNo(string no); #endregion } }