public StudentRepository(StudentMangmentContext context)
 {
     this.context = context;
 }
 public GenericRepository(StudentMangmentContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }