12345678910111213141516171819202122 |
- using AutoMapper;
- using OASystem.Domain.CMBPayBusiness.Entity;
- using OASystem.Domain.Dtos;
- using Newtonsoft.Json;
- using OASystem.Infrastructure.Repositories;
- namespace OASystem.Infrastructure.CDUR
- {
- public class PaymentCDUR
- {
- readonly IMapper _mapper;
- //public PaymentCDUR(IMapper mapper, OrderRepository orderRep, CMBPaymentDetailRepository orderDetailRep)
- //{
- // _mapper = mapper;
- // _orderRep = orderRep;
- // _orderDetailRep = orderDetailRep;
- //}
- }
- }
|