public ExchangerController( ApplicationDbContext dbContext, TokenSaleContract contract, IRateStore rateStore, IOptions <EthSettings> options, Crypto crypto, IEmailSender emailSender) { _dbContext = dbContext; _contract = contract; _options = options.Value; _rateStore = rateStore; _crypto = crypto; _emailSender = emailSender; }
public RateManager(string name, RateLimitOptions options, IRateStore store) { _name = name; _options = options; _store = store; }