public TransactionService(CasinoContext dbContext, ICurrencyRateApiService currencyService) { ServiceValidator.ObjectIsNotEqualNull(dbContext); this.dbContext = dbContext; this.currencyService = currencyService; }
public UserNormalizedBalanceWarningViewComponent(IUserWrapper userManager, IUserService userService, ICurrencyRateApiService ratesService) { this.userManager = userManager; this.userService = userService; this.ratesService = ratesService; }
public HomeController(ICurrencyRateApiService currencyService) { this.currencyService = currencyService; }
public ExchangeRateController(ILogger <ExchangeRateController> logger, ICurrencyRateApiService currencyApiService) { this.logger = logger; this.currencyApiService = currencyApiService; }