ICustomerDefaultProductsApplicationService.cs 513 B

123456789101112131415
  1. using IwbZero.AppServiceBase;
  2. using ShwasherSys.CustomerInfo.Dto;
  3. namespace ShwasherSys.CustomerInfo
  4. {
  5. public interface ICustomerDefaultProductAppService : IIwbAsyncCrudAppService<CustomerDefaultProductDto, int, PagedRequestDto, CustomerDefaultProductCreateDto, CustomerDefaultProductUpdateDto >
  6. {
  7. /*string GetDefualtProductByOrderItemNo(int orderItemNo);
  8. string GetDefualtProductByOrderNo(string orderNo);
  9. string GetDefualtProductByCustomerId(string customerId);*/
  10. }
  11. }