public async Task <IActionResult> GetAllCustom([FromQuery] string userId)
        {
            var watchLists = (await _watchListService.GetAllCustomAsync(userId))
                             .Select(Mapper.Map <WatchList>);

            return(Ok(watchLists));
        }