Exemplo n.º 1
0
        public IActionResult GetAllTickets()
        {
            var tickets = service.GetAllTicketsInfo();

            return(tickets == null?NotFound("No tickets found!") as IActionResult
                   : Ok(mapper.Map <IEnumerable <TicketDTO> >(tickets)));
        }
Exemplo n.º 2
0
        public IActionResult GetAllTickets()
        {
            var tickets = service.GetAllTicketsInfo();

            return(tickets == null?NotFound("No tickets found!") as IActionResult : Ok(tickets));
        }