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