public async Task <IActionResult> GetAll()
        {
            var watchLists = await watchListRepository.GetAll();

            return(Ok(new
            {
                Results = watchLists
            }));
        }