public async Task <IActionResult> CustomRemove(string watchListId, [FromQuery] string userId)
        {
            await _watchListService.RemoveCustomAsync(userId, watchListId);

            return(NoContent());
        }