public bool CreateCountry(Country country) { _context.Add(country); return(Save()); }
public bool CreateCase(Case _case) { _context.Add(_case); return(Save()); }