public IActionResult AddVote(int movieId, int rate) { _moviesService.AddVote(movieId, rate); return(Ok()); }