public async Task <IActionResult> UpdatePredefined([FromBody] WatchList watchList)
        {
            await _watchListService.UpdatePredefinedAsync(watchList);

            return(NoContent());
        }