using Abp.Application.Services.Dto; using IwbZero.AppServiceBase; using ShwasherSys.CustomerInfo.Dto; using System.Collections.Generic; using System.Threading.Tasks; using ShwasherSys.Dto; namespace ShwasherSys.CustomerInfo { public interface ICustomerSendsAppService : IIwbAsyncCrudAppService { List GetCustomerSendDtoByCustomerId(CustomerSendDto customerId); Task GetEntityById(CommonDto input); } }