Esempio n. 1
0
 public UnitOfWork()
 {
     _context = new HIMSDataModel();
 }
Esempio n. 2
0
 public GenericRepository(HIMSDataModel context)
 {
     this._context = context;
     this.DbSet    = context.Set <TEntity>();
 }