Beispiel #1
0
 public GenericFactory(SaraContext _db)
 {
     this.db = _db;
     entity  = db.Set <T>();
 }
Beispiel #2
0
 public GenericFactory()
 {
     this.db = new SaraContext();
     entity  = db.Set <T>();
 }