public async Task <IActionResult> GetCustom(string watchListId, [FromQuery] string userId) { var watchList = await _watchListService.GetCustomAsync(userId, watchListId); if (watchList == null) { return(NotFound()); } return(Ok(Mapper.Map <WatchList>(watchList))); }