Exemplo n.º 1
0
 public Repository(QuoteDbContext context)
 {
     this._context = context;
     DbSet         = this._context.Set <T>();
 }
 public CategoryRepository(QuoteDbContext context)
 {
     this._context = context;
 }
Exemplo n.º 3
0
 public QuoteRepository(QuoteDbContext context)
 {
     this._context = context;
 }