Ejemplo n.º 1
0
        public IActionResult Get(bool blipFormat = true)
        {
            List <Show> showList = _showService.GetShowsWithoutFilter();

            if (blipFormat)
            {
                return(Ok(_carouselService.CreateCarouselWithAllShows(showList)));
            }
            else
            {
                return(Ok(showList));
            }
        }