public async Task <ActionResult <IReadOnlyCollection <TicketDto> > > Update([FromBody] TicketDto ticket) { await ticketManager.UpdateListAsync(ticket); return(Ok()); }