Example #1
0
        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));
        }