Exemplo n.º 1
0
 public Repository(AggregateRootContext context)
 {
     Db            = context;
     DbSet         = context.Set <TEntity>();
     DbSetReadOnly = context.Set <TEntity>().AsNoTracking();
 }
Exemplo n.º 2
0
 public FarmAreaRepository(AggregateRootContext context) :
     base(context)
 {
 }