public UnitOfWork()
 {
     _context = new TeethsEntities();
 }
 public Repository(TeethsEntities _db)
 {
     this._context = _db;
 }
 public UnitOfWork(TeethsEntities context)
 {
     this._context = context;
 }