Ejemplo n.º 1
0
 public GenericRepositoryAccounting()
 {
     _db     = new MarketManagementAccountingEntities();
     _aTable = _db.Set <T>();
 }
Ejemplo n.º 2
0
 public GenericRepositoryAccounting(MarketManagementAccountingEntities db)
 {
     _db     = db;
     _aTable = db.Set <T>();
 }