Exemplo n.º 1
0
 public bool CreateCategory(Category category)
 {
     _categoryContext.AddAsync(category);
     return(Save());
 }
Exemplo n.º 2
0
        public bool CreateCountry(Country country)
        {
            _countryContext.AddAsync(country);

            return(Save());
        }