using System.Threading.Tasks; using Abp.Application.Services.Dto; using IwbZero.AppServiceBase; using ShwasherSys.ScrapStore.Dto; namespace ShwasherSys.ScrapStore { public interface IScrapEnterStoreAppService : IIwbZeroAsyncCrudAppService { #region Get Task GetEntity(EntityDto input); Task GetEntityById(string id); Task GetEntityByNo(string no); #endregion Task> GetViewAll(IwbPagedRequestDto input); } }