using System.Threading.Tasks; using Abp.Application.Services.Dto; using IwbZero.AppServiceBase; using ShwasherSys.RmStore.Dto; namespace ShwasherSys.RmStore { public interface ICurrentRmStoreHouseAppService : IIwbZeroAsyncCrudAppService { #region Get Task GetEntity(EntityDto input); Task GetEntityById(string id); Task GetEntityByNo(string no); #endregion Task> GetAllView(IwbPagedRequestDto input); Task AddEnter(AddRmEnterStore input); Task AddOut(AddRmOutStoreDto input); } }