Ejemplo n.º 1
0
        /// <summary>
        /// Give a list of UPCs, get the products from Ix-One that they have on file.
        /// </summary>
        /// <param name="items">The list of UPC12s that we have in our data</param>
        /// <returns></returns>
        public static IxOneReturn GetIXOneList(List <string> items)
        {
            IxOneReturn ret = new IxOneReturn();

            ret.GetIXOneListRecurse(items);
            return(ret);
        }