Exemplo n.º 1
0
        // method to get customers
        public static CustomerAddress[] List(string apiUrl, string sessionId, object[] args)
        {
            ICustomerAddress proxyCustomer = (ICustomerAddress)XmlRpcProxyGen.Create(typeof(ICustomerAddress));

            proxyCustomer.Url = apiUrl;

            return(proxyCustomer.List(sessionId, _customer_list, args));
        }