internal MicrobiologyReport[] getMicrobiologyReports(string pid, string fromDate, string toDate, int nrpts) { MDWSRPCs rdw = new MDWSRPCs() { Url = _cxn.DataSource.Provider }; // the cookie URL should have been set on the connection string response = rdw.getMicroNotes(pid, Convert.ToInt64(nrpts), true, fromDate, toDate); return(toMicrobiologyReports(response)); }
public Note[] getNotes(string fromDate, string toDate, int nNotes) { MDWSRPCs rdw = new MDWSRPCs() { Url = _cxn.DataSource.Provider }; // the cookie URL should have been set on the connection string response = rdw.getProgNotes(_cxn.Pid, nNotes, true, fromDate, toDate); return(toNotes(response)); }