Exemple #1
0
 public async Task <IActionResult> CancelAppointmentAsync(
     [FromBody] AppointmentCancellationDto appointmentCancellationDto)
 {
     return(await appointmentService.CancelAppointmentAsync(appointmentCancellationDto));
 }