public async Task <IActionResult> GetAllTickets()
        {
            var tickets = await service.GetAllTicketsInfoAsync();

            return(tickets == null?NotFound("No tickets found!") as IActionResult
                   : Ok(mapper.Map <IEnumerable <TicketDTO> >(tickets)));
        }