public IActionResult Create(Country country)
 {
     ApiHelper.AddCountry(country);
     return(RedirectToAction("Index", "Countries"));
 }