Esempio n. 1
0
 public GenericRepository(DemoEntities1 db)
 {
     this.db = db;
     table   = db.Set <T>();
 }
Esempio n. 2
0
 public GenericRepository()
 {
     this.db = new DemoEntities1();
     table   = db.Set <T>();
 }