ICustomersApplicationService.cs 266 B

123456789
  1. using IwbZero.AppServiceBase;
  2. using ShwasherSys.CustomerInfo.Dto;
  3. namespace ShwasherSys.CustomerInfo
  4. {
  5. public interface ICustomersAppService : IIwbAsyncCrudAppService<CustomerDto, string, PagedRequestDto, CustomerCreateDto, CustomerUpdateDto >
  6. {
  7. }
  8. }