public PaymentApiController(IPayuService payuService, IMapper mapper)
 {
     _payuService = payuService;
     _mapper      = mapper;
 }
示例#2
0
 public PaymentController(IPayuService payuService, IMapper mapper, IOrderService orderService)
 {
     _payuService  = payuService;
     _mapper       = mapper;
     _orderService = orderService;
 }