Exemplo n.º 1
0
        /// <summary>
        /// A basic add example
        /// </summary>
        public AccountsProductsAndServicesModel Add(string orgCode, string accountCode, string productServiceCode)
        {
            var myProductService = new AccountsProductsAndServicesModel
            {
                OrganizationCode   = orgCode,
                AccountCode        = accountCode,
                ProductServiceCode = productServiceCode
            };

            return(APIUtil.AddProductService(USISDKClient, myProductService));
        }