public AuthController(StudentRegisterDBContext context, UserManager <User> userManager, SignInManager <User> signInManager, IConfiguration config)
 {
     this.context       = context;
     this.userManager   = userManager;
     this.signInManager = signInManager;
     this.config        = config;
 }
 public StudentService(StudentRegisterDBContext context)
 {
     this.context = context;
 }
Exemplo n.º 3
0
 public NationalityService(StudentRegisterDBContext context)
 {
     this.context = context;
 }
Exemplo n.º 4
0
 public FacultyService(StudentRegisterDBContext context)
 {
     this.context = context;
 }
Exemplo n.º 5
0
 public GenericRepository(StudentRegisterDBContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }