PaymentCDUR.cs 536 B

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