コード例 #1
0
 public TradeController(
     ILogger <TradeController> logger,
     UserManager <ApplicationUser> userManager,
     ApplicationDbContext context,
     IOptions <ExchangeSettings> settings,
     ITripwire tripwire,
     IUserLocks userLocks) : base(logger, userManager, context, settings)
 {
     _tripwire  = tripwire;
     _userLocks = userLocks;
 }
コード例 #2
0
 public WalletController(
     ILogger <WalletController> logger,
     UserManager <ApplicationUser> userManager,
     ApplicationDbContext context,
     IOptions <ExchangeSettings> settings,
     IWalletProvider walletProvider,
     IOptions <KycSettings> kycSettings,
     IEmailSender emailSender,
     ITripwire tripwire,
     IUserLocks userLocks) : base(logger, userManager, context, settings, walletProvider, kycSettings)
 {
     _emailSender = emailSender;
     _tripwire    = tripwire;
     _userLocks   = userLocks;
 }