Exemple #1
0
        public static void GetXContactsByXStudent(XPress xPress)
        {
            List <XContactType> xContactTypeList = xPress.GetXContactsByXStudent(STUDENT_REFID, OPAQUE_MARKER).Data;

            foreach (XContactType o in xContactTypeList)
            {
                Console.WriteLine(o.refId + " | " + o.Metadata.SchoolYear);
            }
        }