示例#1
0
 public UnitOfWork()
 {
     _context = new ItProductsEntities();
 }
 public Repository(ItProductsEntities _db)
 {
     this._context = _db;
 }
示例#3
0
 public UnitOfWork(ItProductsEntities context)
 {
     this._context = context;
 }