Beispiel #1
0
 /// <summary>
 /// Remove a movie from the watchlist
 /// </summary>
 public IActionResult RemoveMovie(int watchlistId, int movieId)
 {
     _watchlistService.RemoveMovieFromList(GetUserId(), watchlistId, movieId);
     return(Ok());
 }