gov.va.medora.mdws.MhvLib.getLabReports C# (CSharp) Method

getLabReports() public method

public getLabReports ( string appPwd, string patientICN, string fromDate, string toDate ) : gov.va.medora.mdws.dto.LabResultTO[]
appPwd string
patientICN string
fromDate string
toDate string
return gov.va.medora.mdws.dto.LabResultTO[]
        public LabResultTO[] getLabReports(string appPwd, string patientICN, string fromDate, string toDate)
        {
            LabResultTO[] result = new LabResultTO[1];
            result[0] = new LabResultTO() { fault = new FaultTO("Not implemented") };
            return result;
        }