예제 #1
0
 /// <summary>
 /// Delete exist <see cref="Booking"></see>
 /// </summary>
 /// <param name="id"><see cref="Booking.Id"></see> of exist <see cref="Booking"></see></param>
 /// <returns></returns>
 public async Task Delete(int id)
 {
     await bookingsRepo.DeleteAsync(id);
 }
예제 #2
0
 public async Task Delete(int id)
 {
     await _bookingsRepository.DeleteAsync(id);
 }