public ActionResult Clear()
 {
     Games.DeleteAll();
     return(View(Games.GetAll()));
 }
 public void Dispose()
 {
     Games.DeleteAll();
 }