コード例 #1
0
        //Delete Method

        public string DeleteAppointmentById(int id)

        {
            var appointment2 = _appointmentData.DeleteAppointment(id);

            return(appointment2);
        }