PaymentCDUR.cs 491 B

123456789101112131415161718192021
  1. using AutoMapper;
  2. using OASystem.Domain.Dtos;
  3. using Newtonsoft.Json;
  4. using OASystem.Infrastructure.Repositories;
  5. namespace OASystem.Infrastructure.CDUR
  6. {
  7. public class PaymentCDUR
  8. {
  9. readonly IMapper _mapper;
  10. //public PaymentCDUR(IMapper mapper, OrderRepository orderRep, CMBPaymentDetailRepository orderDetailRep)
  11. //{
  12. // _mapper = mapper;
  13. // _orderRep = orderRep;
  14. // _orderDetailRep = orderDetailRep;
  15. //}
  16. }
  17. }