// GET: Club/Create
 public ActionResult Create()
 {
     ViewBag.CountryId = new SelectList(repository.GetCountryModels(), "CountryId", "CountryName");
     return(View());
 }