Beispiel #1
0
 public AccountService(VikingVaultDbContext dbContext)
 {
     _dbContext   = dbContext;
     accountsList = new List <UserAccount>();
 }
Beispiel #2
0
 public UniqueEmailService(VikingVaultDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #3
0
 public UserService(VikingVaultDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #4
0
 public LoginService(VikingVaultDbContext context, IOptions <AppSettings> appSettings)
 {
     _context     = context;
     _appSettings = appSettings.Value;
 }
Beispiel #5
0
 public UserProfilePageService(VikingVaultDbContext dbContext)
 {
     _dbContext = dbContext;
 }