예제 #1
0
        public async Task <List <PatientModel> > FilterPatients(string bodyType, string bloodCode, string allergies, string gender, string smokingFrequency, string alcoholUnit, decimal alcoholValue,
                                                                decimal fitnessHours, string postCode, string nationality, string birthPlace, string toHospital)
        {
            try
            {
                var trxns = await _api.FilterPatients(bodyType, bloodCode, allergies, gender, smokingFrequency, alcoholUnit, alcoholValue, fitnessHours, postCode, nationality, birthPlace, toHospital);

                return(trxns);
            }
            catch (Exception e)
            {
                throw e;
            }
        }