예제 #1
0
        public static void GetXCalendarsByXSchool(XPress xPress)
        {
            List <XCalendarType> xCalendarTypeList = xPress.GetXCalendarsByXSchool(SCHOOL_REFID, OPAQUE_MARKER).Data;

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