示例#1
0
 public GenericRepositoryAccounting()
 {
     _db     = new MarketManagementAccountingEntities();
     _aTable = _db.Set <T>();
 }
示例#2
0
 public GenericRepositoryAccounting(MarketManagementAccountingEntities db)
 {
     _db     = db;
     _aTable = db.Set <T>();
 }