Ejemplo n.º 1
0
 public LeaveNotifierDbContextSeedData(LeaveNotifierDbContext context,
                                       RoleManager <IdentityRole> roleManager,
                                       UserManager <LeaveNotifierUser> userManager,
                                       IConfigurationRoot config)
 {
     _context     = context;
     _roleManager = roleManager;
     _userManager = userManager;
     _config      = config;
 }
Ejemplo n.º 2
0
 public LeaveNotifierRepository(LeaveNotifierDbContext context)
 {
     _context = context;
 }