Exemplo n.º 1
0
 public EntitySaver(iTestDbContext context) => this.context = context;
Exemplo n.º 2
0
 public HomeController(iTestDbContext ctx)
 {
     this.ctx = ctx;
 }
Exemplo n.º 3
0
 public GenericRepository(iTestDbContext context)
 {
     this.context = context;
     this.dbSet   = this.Context.Set <TEntity>();
 }
Exemplo n.º 4
0
 public EfRepository(iTestDbContext context)
 {
     this.context = context;
 }