コード例 #1
0
        // get all patient
        public IActionResult GetAll()
        {
            List <Patient> PatientList = _Patient.GetAll().ToList();

            return(Ok(new
            {
                PatientList
            }));
        }