gov.va.medora.mdws.EmrSvc.getBloodTransfusionReports C# (CSharp) Method

getBloodTransfusionReports() private method

private getBloodTransfusionReports ( string fromDate, string toDate, int nrpts ) : TaggedTextArray
fromDate string
toDate string
nrpts int
return gov.va.medora.mdws.dto.TaggedTextArray
        public TaggedTextArray getBloodTransfusionReports(string fromDate, string toDate, int nrpts)
        {
            return (TaggedTextArray)MySession.execute("LabsLib", "getBloodTransfusionReports", new object[] { fromDate, toDate, nrpts });
        }
EmrSvc