public async Task <ActionResult> BookTicket(int seatNo, int clientId) { await _bookingRepository.BookTicket(seatNo, clientId); return(Ok()); }