Exemplo n.º 1
0
        public IActionResult GetVitalSignByPatientAndCode(string patientId, string code)
        {
            var item = _observationService.GetVitalSignByPatientAndCode(patientId, code);

            return(Ok(item));
        }