Esempio n. 1
0
        ///* xCalendars */
        public static void GetXCalendars(XPress xPress)
        {
            List <XCalendarType> xCalendarTypeList = xPress.GetXCalendars(OPAQUE_MARKER).Data;

            foreach (XCalendarType o in xCalendarTypeList)
            {
                Console.WriteLine(o.refId + " | " + o.schoolRefId + " | " + o.Metadata.SchoolYear);
            }
        }