/// <summary></summary>
 public CustomerTransactionsController(
     IUnitOfWorkAsync unitOfWorkAsync,
     ICustomerTransactionService service)
 {
     _unitOfWorkAsync = unitOfWorkAsync;
     _service         = service;
 }
Example #2
0
 public PaymentsController(
     IMapper mapper,
     ISSLCommerzConfig config,
     ICartService cartService,
     ISSLCommerzService sslCommerzService,
     ICustomerTransactionService customerTransactionService,
     ICustomerTransactionSessionService customerTransactionSessionService
     )
 {
     _mapper                            = mapper;
     _config                            = config;
     _cartService                       = cartService;
     _sslCommerzService                 = sslCommerzService;
     _customerTransactionService        = customerTransactionService;
     _customerTransactionSessionService = customerTransactionSessionService;
 }
Example #3
0
 public CustomerTransactionController(ICustomerTransactionService customerTransactionService)
 {
     _customerTransactionService = customerTransactionService;
 }