예제 #1
0
        public PathologyReportContainer GetReport()
        {
            var RequestedDate            = new DateTimeOffset(2020, 11, 09, 00, 00, 00, TimeSpan.FromHours(10));
            var CollectionDateTime       = new DateTimeOffset(2020, 11, 09, 10, 25, 00, TimeSpan.FromHours(10));
            var SpecimenReceivedDateTime = new DateTimeOffset(2020, 11, 09, 12, 03, 00, TimeSpan.FromHours(10));
            var ReportReleaseDateTime    = new DateTimeOffset(2020, 11, 10, 08, 27, 00, TimeSpan.FromHours(10));
            var ObservationDateTime      = ReportReleaseDateTime.Subtract(TimeSpan.FromMinutes(5));

            return(new PathologyReportContainer()
            {
                PathologyReport = new PathologyReport()
                {
                    PerformingLaboratory = LaboratoryFactory.GetPITUSLaboratory(),
                    Patient = PatientFactory.GetHaydenNORQUAY(),
                    Request = new Request()
                    {
                        RequestedDate = RequestedDate,
                        OrderNumber = "00000015",
                        RequestingFacility = new Organisation()
                        {
                            Name = "Sunrise Hospital Fever Clinic ",
                            Identifier = new Identifier()
                            {
                                Value = "3659F40F-8BDF-4CD6-BF46-38257CA6BB97",
                                Type = IdentifierType.GUID
                            }
                        },
                        RequestingApplication = "Best Practice 1.8.5.743",
                        RequestingProvider = ProviderFactory.GetTrishFamilyDr(MedicareProviderNumber: "603107KW"),
                        ClinicalNotes = "Sore throat & cough, works in hospitality",
                        CallBackPhoneNumber = null,
                        CopyToList = new List <Provider>()
                        {
                            ProviderFactory.GetMySpecialist()
                        }
                    },
                    PdfFileName = "Exemplar Report SARS-CoV-2NAT v0.4.pdf",
                    ReportList = new List <Report>()
                    {
                        new Report()
                        {
                            ReportId = "2078881879",
                            CollectionDateTime = CollectionDateTime,
                            SpecimenReceivedDateTime = SpecimenReceivedDateTime,
                            ReportReleaseDateTime = ReportReleaseDateTime,
                            ReportType = new ReportType()
                            {
                                Local = new Code()
                                {
                                    Term = "COVID2", Description = "SARS-CoV-2 nucleic acid"
                                },
                                Snomed = new Code()
                                {
                                    Term = "1445431000168101", Description = "Oropharyngeal swab COVID-19 nucleic acid assay"
                                }
                            },
                            ReportStatus = ResultStatusType.Final,
                            Department = DiagnosticService.Microbiology,
                            ReportingPathologist = ProviderFactory.GetBellaPathologist(),
                            Panel = new Panel()
                            {
                                ResultList = new List <Result>()
                                {
                                    new Result()
                                    {
                                        Type = new ResultType()
                                        {
                                            Local = new Code()
                                            {
                                                Term = "COVI2DRNA",
                                                Description = "SARS-CoV-2 RNA"
                                            },
                                            Lonic = new Code()
                                            {
                                                Term = "94309-2",
                                                Description = "SARS-CoV-2 (COVID-19) RNA NAA+probe Ql (Unsp spec)"
                                            }
                                        },
                                        DataType = "ST",
                                        Value = "Not Detected",
                                        Units = null,
                                        ReferenceRange = null,
                                        AbnormalFlag = null,
                                        ObservationDateTime = ObservationDateTime,
                                        Status = ResultStatusType.Final,
                                        ChildResultList = null
                                    },
                                    new Result()
                                    {
                                        Type = new ResultType()
                                        {
                                            Local = new Code()
                                            {
                                                Term = "INTERP",
                                                Description = "Interpretation"
                                            },
                                            Lonic = null,
                                        },
                                        DataType = "FT",
                                        Value = "Failure to detect virus specific nucleic acid does not always exclude SARS-CoV-2. Repeat testing\\.br\\" +
                                                "including a sputum sample if available, may be indicated if clinical suspicion is high.\\.br\\" +
                                                "This assay is designed to detect the E gene of SARS-CoV-2, the causative agent of COVID-19 using\\.br\\" +
                                                "nucleic acid amplification. On occasions, a second assay targeting the N gene is also utilised.\\.br\\" +
                                                "\\.br\\" +
                                                "For further requires regarding these results, please contact the Medical Virologist on (07) 5454 0387.\\.br\\" +
                                                "Testing for SARS-CoV-2 is notifiable on request irrespective of test results.\\.br\\",
                                        Units = null,
                                        ReferenceRange = null,
                                        AbnormalFlag = null,
                                        ObservationDateTime = ObservationDateTime,
                                        Status = ResultStatusType.Final,
                                        ChildResultList = null
                                    }
                                }
                            }
                        }
                    }
                }
            });
        }