public bool DeleteCountry(Country country)
 {
     _context.Remove(country);
     return(Save());
 }
 public bool DeleteCase(Case _case)
 {
     _context.Remove(_case);
     return(Save());
 }