Beispiel #1
0
 public ProxyController(IAccountGateway accountServices,
                        ICustomerGateway customerService, IIdentityGateway identityService)
 {
     _accountServices = accountServices;
     _customerService = customerService;
     _identityService = identityService;
 }
Beispiel #2
0
 public GetCustByIdAndLocQueryHandler(ICustomerGateway customerGateway)
 {
     _customerGateway = customerGateway;
 }
Beispiel #3
0
 public CustomerRefresher(ICustomerGateway customerGateway, ICustomerRepo customerRepo)
 {
     this.customerGateway = customerGateway;
     this.customerRepo    = customerRepo;
 }
Beispiel #4
0
 public UndoCancellingSubscriptionHandler(ICustomerGateway customerGateway, ICustomerRepo customerRepo)
 {
     this.customerGateway = customerGateway;
     this.customerRepo    = customerRepo;
 }
Beispiel #5
0
 public CancelSubscriptionAtPeriodEndHandler(ICustomerGateway customerGateway, ICustomerRepo customerRepo)
 {
     this.customerGateway = customerGateway;
     this.customerRepo    = customerRepo;
 }
Beispiel #6
0
 public CreateSubscriptionStep(ICustomerGateway customerGateway, ICustomerRepo customerRepo, ISubscriptionPlanRepo planRepo)
 {
     this.customerGateway = customerGateway;
     this.customerRepo    = customerRepo;
     this.planRepo        = planRepo;
 }