Esempio n. 1
0
 public GreenfieldCustodianAccountController(CustodianAccountRepository custodianAccountRepository,
                                             IEnumerable <ICustodian> custodianRegistry,
                                             IAuthorizationService authorizationService)
 {
     _custodianAccountRepository = custodianAccountRepository;
     _custodianRegistry          = custodianRegistry;
     _authorizationService       = authorizationService;
 }
Esempio n. 2
0
 public UICustodianAccountsController(
     CurrencyNameTable currencyNameTable,
     UserManager <ApplicationUser> userManager,
     CustodianAccountRepository custodianAccountRepository,
     IEnumerable <ICustodian> custodianRegistry
     )
 {
     _currencyNameTable          = currencyNameTable ?? throw new ArgumentNullException(nameof(currencyNameTable));
     _userManager                = userManager;
     _custodianAccountRepository = custodianAccountRepository;
     _custodianRegistry          = custodianRegistry;
 }
Esempio n. 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;
 }