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