Esempio n. 1
0
 public UnitOfWork(JustInTimeContext _dbContext)
 {
     this._dbContext = _dbContext;
 }
Esempio n. 2
0
 public BaseRepository(JustInTimeContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }