Exemple #1
0
        /* xContacts */
        public static void GetXContacts(XPress xPress)
        {
            List <XContactType> xContactTypeList = xPress.GetXContacts(OPAQUE_MARKER).Data;

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