public async Task <IActionResult> GetWatchListListByStudentId([FromQuery] string studentId)
        {
            var watchLists = await watchListRepository.GetWatchListListByStudentId(studentId);

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