public ConsultantApplicationService(
     HydrogenApplicationContext context,
     ILogger log)
 {
     _context = context;
     _log     = log;
 }
 public UserService(HydrogenApplicationContext context,
                    ActorService actorService,
                    IPaymentService paymentService)
 {
     _actorService   = actorService;
     _context        = context;
     _paymentService = paymentService;
 }
Example #3
0
 public PaymentCommandHandler(
     IPaymentService paymentService,
     HydrogenApplicationContext context,
     ILogger log)
 {
     _context        = context;
     _paymentService = paymentService;
     _log            = log;
 }
Example #4
0
 public BraintreePaymentService(IBraintreeGateway gateway, HydrogenApplicationContext context, ILogger log)
 {
     _gateway = gateway;
     _context = context;
     _log     = log;
 }
 public SubscriptionService(HydrogenApplicationContext context)
 {
     this._context = context;
 }