gov.va.medora.mdws.LabsLib.getChemHemReports C# (CSharp) Method

getChemHemReports() public method

public getChemHemReports ( string fromDate, string toDate ) : TaggedChemHemRptArrays
fromDate string
toDate string
return gov.va.medora.mdws.dto.TaggedChemHemRptArrays
        public TaggedChemHemRptArrays getChemHemReports(string fromDate, string toDate)
        {
            TaggedChemHemRptArrays result = new TaggedChemHemRptArrays();

            if (!mySession.ConnectionSet.IsAuthorized)
            {
                result.fault = new FaultTO("Connections not ready for operation", "Need to login?");
            }
            else if (fromDate == "")
            {
                result.fault = new FaultTO("Missing fromDate");
            }
            else if (toDate == "")
            {
                result.fault = new FaultTO("Missing toDate");
            }
            if (result.fault != null)
            {
                return result;
            }

            try
            {
                IndexedHashtable t = ChemHemReport.getChemHemReports(mySession.ConnectionSet, fromDate, toDate);
                result = new TaggedChemHemRptArrays(t);
            }
            catch (Exception e)
            {
                result.fault = new FaultTO(e);
            }
            return result;
        }