Beispiel #1
0
 public UIPayButtonController(
     StoreRepository repo,
     UIStoresController storesController,
     UserManager <ApplicationUser> userManager,
     AppService appService)
 {
     _repo             = repo;
     _userManager      = userManager;
     _appService       = appService;
     _storesController = storesController;
 }
Beispiel #2
0
 public MainNav(
     AppService appService,
     StoreRepository storeRepo,
     UIStoresController storesController,
     BTCPayNetworkProvider networkProvider,
     UserManager <ApplicationUser> userManager,
     PaymentMethodHandlerDictionary paymentMethodHandlerDictionary)
 {
     _storeRepo        = storeRepo;
     _appService       = appService;
     _userManager      = userManager;
     _networkProvider  = networkProvider;
     _storesController = storesController;
     _paymentMethodHandlerDictionary = paymentMethodHandlerDictionary;
 }
Beispiel #3
0
 public MainNav(
     AppService appService,
     StoreRepository storeRepo,
     UIStoresController storesController,
     BTCPayNetworkProvider networkProvider,
     UserManager <ApplicationUser> userManager,
     PaymentMethodHandlerDictionary paymentMethodHandlerDictionary,
     CustodianAccountRepository custodianAccountRepository,
     PoliciesSettings policiesSettings)
 {
     _storeRepo        = storeRepo;
     _appService       = appService;
     _userManager      = userManager;
     _networkProvider  = networkProvider;
     _storesController = storesController;
     _paymentMethodHandlerDictionary = paymentMethodHandlerDictionary;
     _custodianAccountRepository     = custodianAccountRepository;
     PoliciesSettings = policiesSettings;
 }