public bool UpdateCountry(Country country)
 {
     _context.Update(country);
     return(Save());
 }
 public bool UpdateCase(Case _case)
 {
     _context.Update(_case);
     return(Save());
 }