public bool CreateCategory(Category category) { _categoryContext.AddAsync(category); return(Save()); }
public bool CreateCountry(Country country) { _countryContext.AddAsync(country); return(Save()); }