Esempio n. 1
0
        public TransactionService(CasinoContext dbContext, ICurrencyRateApiService currencyService)
        {
            ServiceValidator.ObjectIsNotEqualNull(dbContext);

            this.dbContext       = dbContext;
            this.currencyService = currencyService;
        }
Esempio n. 2
0
 public UserNormalizedBalanceWarningViewComponent(IUserWrapper userManager, IUserService userService, ICurrencyRateApiService ratesService)
 {
     this.userManager  = userManager;
     this.userService  = userService;
     this.ratesService = ratesService;
 }
Esempio n. 3
0
 public HomeController(ICurrencyRateApiService currencyService)
 {
     this.currencyService = currencyService;
 }
Esempio n. 4
0
 public ExchangeRateController(ILogger <ExchangeRateController> logger,
                               ICurrencyRateApiService currencyApiService)
 {
     this.logger             = logger;
     this.currencyApiService = currencyApiService;
 }