/// <summary>
 /// Initialize a repository and take a context for the 2006StoreApplication database
 /// </summary>
 /// <param name="_context">The DbContext</param>
 public GenericRepository(_2006StoreApplicationContext _context)
 {
     this._context = _context;
     table         = _context.Set <T>();
 }
 /// <summary>
 /// Initialize a repository and provide the context for the 2006StoreApplication database
 /// </summary>
 public GenericRepository()
 {
     this._context = new _2006StoreApplicationContext();
     table         = _context.Set <T>();
 }