Exemplo n.º 1
0
 public TransPayPalController(PaymentBraintreeService braintreeService, IUnitOfWork unitOfWork, ILogger <TransPayPalController> logger)
 {
     logger.LogInformation("called PaymentController");
     this.logger           = logger;
     this.unitOfWork       = unitOfWork;
     this.braintreeService = braintreeService;
 }
Exemplo n.º 2
0
 public PaymentRepository(PaymentBraintreeService braintreeService, IConfiguration configuration, ILogger <PaymentRepository> logger) : base(configuration)
 {
     this.braintreeService = braintreeService;
     this.logger           = logger;
 }