Ejemplo n.º 1
0
 public UnitOfWork(RPGSupportDb context)
 {
     _context = context ?? throw new ArgumentNullException("database");
 }
Ejemplo n.º 2
0
 public Repository(RPGSupportDb context)
 {
     this._context = context;
     _dbset        = _context.Set <TEntity>();
 }