public GenericRepository(connectionString _context)
 {
     this._context = _context;
     table         = _context.Set <T>();
 }
 public GenericRepository()
 {
     this._context = new connectionString();
     table         = _context.Set <T>();
 }