using System.Threading.Tasks; using Abp.Application.Services.Dto; using IwbZero.AppServiceBase; using ShwasherSys.CompanyInfo.DeviceInfo.Dto; using ShwasherSys.CompanyInfo.MoldInfo.Dto; namespace ShwasherSys.CompanyInfo.MoldInfo { public interface IMoldAppService : IIwbZeroAsyncCrudAppService { #region Get Task GetEntity(EntityDto input); Task GetEntityById(int id); Task GetEntityByNo(string no); #endregion } }