Пример #1
0
 public async Task <IActionResult> AddBooking([FromBody] Book book)
 {
     return(Ok(await bookRepository.AddBookings(book)));
 }