protected GenericRepository(SalesUpEntities dataContext) { this.dataContext = dataContext; this.dbSet = dataContext.Set <T>(); }
public GenericRepository() { this.dataContext = new SalesUpEntities(); this.dbSet = dataContext.Set <T>(); }