public PaymentProcessService(IPaymentDbService paymentDbService, IResultService resultService, IPaymentInstallmentDbService paymentInstallmentDbService)
 {
     _paymentDbService            = paymentDbService;
     _resultService               = resultService;
     _paymentInstallmentDbService = paymentInstallmentDbService;
 }
 public PaymentsController(IPaymentDbService paymentService, IPaymentProcessService paymentProcessService)
 {
     _paymentService        = paymentService;
     _paymentProcessService = paymentProcessService;
 }
Exemple #3
0
 public PaymentService()
 {
     paymentDb = new PaymentDbService();
 }
Exemple #4
0
 public AnticipationController(IPaymentDbService paymentDbService, IAnticipationService anticipationDbService)
 {
     _paymentDbService      = paymentDbService;
     _anticipationDbService = anticipationDbService;
 }