Exemplo n.º 1
0
        public async Task <IActionResult> GetCheckedInPatient(int locationId, int accountId, string patientId)
        {
            var checkin = await _checkInRepository.GetCheckedInPatient(locationId, patientId, accountId);

            return(Ok(checkin));
        }