public IActionResult GetList(int id) { var huntedList = _listRepository.GetHuntedList(id); if (huntedList == null) { return(NotFound()); } return(Ok(huntedList)); }