public async Task <IActionResult> MarkAsWatched(ToggleWatchedDto markAsWatched) { await _watchlistValidatorService.ValidateForMarkingAsWatched(markAsWatched); await _watchlistService.MarkAsWatched(markAsWatched); return(Ok()); }