public ActionResult AddRating(Rating rating)
 {
     _movieRepository.AddRating(rating);
     return(NoContent());
 }