Beispiel #1
0
        public async Task <IEnumerable <Patient> > FindAllPatients()
        {
            try
            {
                var result = await _patientRepository.FindAllPatients();

                return(result);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }