public UnitOfWork(StudenDbContext context) { _context = context; }
public GenericRepository(StudenDbContext context) { this.context = context; this.dbSet = context.Set <TEntity>(); }