コード例 #1
0
        public IActionResult GetAllPatientDoctors()
        {
            var patientDoctors = _patientDoctorService.GetAllPatientDoctors();

            return(Ok(patientDoctors));
        }