コード例 #1
0
 public UnitOfWork()
 {
     _context = new TeethsEntities();
 }
コード例 #2
0
 public Repository(TeethsEntities _db)
 {
     this._context = _db;
 }
コード例 #3
0
 public UnitOfWork(TeethsEntities context)
 {
     this._context = context;
 }