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

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