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