예제 #1
0
        public static decimal?GetFraminghamRisk(int age, bool isGenderMale, int?totalCholestrol, int hdl, int?ldl, int systolic,
                                                int diastolic, bool isSmoker, bool isDiabetic)
        {
            var testResultService = new TestResultService();

            return(testResultService.GetFraminghamRisk(age, isGenderMale, totalCholestrol, hdl, ldl, systolic, diastolic, isSmoker, isDiabetic));
        }