public async Task <IActionResult> GetAllPredefined()
        {
            var watchLists = (await _watchListService.GetAllPredefinedAsync())
                             .Select(Mapper.Map <WatchList>);

            return(Ok(watchLists));
        }