コード例 #1
0
        public ActionResult <IList <Appointment> > GetAppointments()
        {
            var result = _appointmentService.ListAll().Result;

            return(Ok(result));
        }