コード例 #1
0
        public IList <ChemHemReport> getChemHemReportsVPR(string fromDate, string toDate)
        {
            VistaClinicalDao clinicalDao = new VistaClinicalDao(this.cxn);
            string           results     = clinicalDao.getNhinData("lab");
            ChemHemReport    rpt         = new ChemHemReport();

            (toLabReportsVPR(results, ref rpt)).CopyTo(rpt.Results, 0);
            return(new List <ChemHemReport>()
            {
                rpt
            });
        }
コード例 #2
0
 public FhieClinicalDao(AbstractConnection cxn)
 {
     this.cxn = (VistaConnection)cxn;
     vistaDao = new VistaClinicalDao(cxn);
 }