public StudentRepository(Student1Context context)
 {
     this.context = context;
 }
 public LoginController(IConfiguration config, Student1Context _db)
 {
     _config   = config;
     DbContext = _db;
 }
 public AttendeeRepository(Student1Context context)
 {
     this.context = context;
 }
 public StudentService(Student1Context _db)
 {
     DbContext = _db;
 }