Exemplo n.º 1
0
        public ActionResult <Appointment> UpdateAppointment(Appointment appointment)
        {
            var result = _appointmentService.Update(appointment).Result;

            return(Ok(result));
        }