Example #1
0
 public ProfileController(UserIdentityService userIdentity, UsersService users, ClientCurrencyService clientCurrency, ClientThemeService clientTheme)
 {
     _userIdentity   = userIdentity;
     _users          = users;
     _clientCurrency = clientCurrency;
     _clientTheme    = clientTheme;
 }
 public AuthenticateService(IHttpContextAccessor httpContextAccessor, JewellisDbContext dbContext, UsersService users, UserCacheService userCache, ClientCurrencyService clientCurrency, ClientThemeService clientTheme)
 {
     _httpContextAccessor = httpContextAccessor;
     _dbContext           = dbContext;
     _users          = users;
     _userCache      = userCache;
     _clientCurrency = clientCurrency;
     _clientTheme    = clientTheme;
 }
 public PreferencesController(ClientThemeService clientTheme, ClientCurrencyService clientCurrency)
 {
     _clientTheme    = clientTheme;
     _clientCurrency = clientCurrency;
 }
 public HomeController(JewellisDbContext dbContext, UserIdentityService userIdentity, ClientCurrencyService clientCurrency)
 {
     _dbContext      = dbContext;
     _userIdentity   = userIdentity;
     _clientCurrency = clientCurrency;
 }
 public HomeController(JewellisDbContext dbContext, OrdersService orders, ClientCurrencyService clientCurrency)
 {
     _dbContext      = dbContext;
     _orders         = orders;
     _clientCurrency = clientCurrency;
 }