Exemplo n.º 1
0
 public bool CreateReview(Review review)
 {
     _reviewContext.AddAsync(review);
     return(Save());
 }
Exemplo n.º 2
0
 public bool CreateReviewer(Reviewer reviewer)
 {
     _reviewerContext.AddAsync(reviewer);
     return(Save());
 }
Exemplo n.º 3
0
        public bool CreateCategory(Category category)
        {
            _categoryContext.AddAsync(category);

            return(Save());
        }
Exemplo n.º 4
0
        public bool CreateCountry(Country country)
        {
            _countryContext.AddAsync(country);

            return(Save());
        }