示例#1
0
        public static HIV_TESTS Create(List <ClientTestingStage> tests, SUMMARY summary)
        {
            var screening    = NewTests.Create(tests.Where(x => x.HtsTestType == HtsTestType.Screening));
            var confirmatory = NewTests.Create(tests.Where(x => x.HtsTestType == HtsTestType.Confrimatory));

            return(new HIV_TESTS(screening, confirmatory, summary));
        }
示例#2
0
 public static HIV_TESTS Create(List <NewTests> screening, List <NewTests> confirmatory, SUMMARY summary)
 {
     return(new HIV_TESTS(screening, confirmatory, summary));
 }
示例#3
0
 private HIV_TESTS(List <NewTests> screening, List <NewTests> confirmatory, SUMMARY summary)
 {
     SCREENING    = screening;
     CONFIRMATORY = confirmatory;
     SUMMARY      = summary;
 }