public GenericRepository(DBConfigurationContext _context) { this._context = _context; table = _context.Set <T>(); }
public GenericRepository() { this._context = new DBConfigurationContext(); table = _context.Set <T>(); }