public CustomerAccountProfile GetCustomerAccountByAccountNumber(string accountNumber13)
 {
     try
     {
         Cox.BusinessLogic.CustomerAccount.CustomerAccountInquire customerAccountInquire = new Cox.BusinessLogic.CustomerAccount.CustomerAccountInquire(this.userName);
         return(customerAccountInquire.GetCustomerAccountByAccountNumber(accountNumber13));
     }
     catch (Exception e)
     {
         ExceptionManager.Publish(e);
         throw CoxSoapException.Create(e);
     }
 }
 public CustomerAccountProfile GetCustomerAccountByPhoneNbrAndStreetNbr(string phoneNumber10, string streetNumber)
 {
     try
     {
         Cox.BusinessLogic.CustomerAccount.CustomerAccountInquire customerAccountInquire = new Cox.BusinessLogic.CustomerAccount.CustomerAccountInquire(this.userName);
         return(customerAccountInquire.GetCustomerAccountByPhoneNbrAndStreetNbr(phoneNumber10, streetNumber));
     }
     catch (Exception e)
     {
         ExceptionManager.Publish(e);
         throw CoxSoapException.Create(e);
     }
 }
        public CustomerContactInformation[] GetAccountByPhoneNumber(
            [XmlElement(IsNullable = true)] string phoneNumber10,
            bool getNeverAndFormerAsWell, [XmlIgnore()] bool getNeverAndFormerAsWellSpecified)
        {
            try
            {
                Cox.BusinessLogic.CustomerAccount.CustomerAccountInquire customerAccountInquire = new Cox.BusinessLogic.CustomerAccount.CustomerAccountInquire(this.userName);
                return(customerAccountInquire.getAccountAddressesbyPhoneNumber(phoneNumber10, getNeverAndFormerAsWell).ToArray());
            }

            catch (Exception e)
            {
                ExceptionManager.Publish(e);
                throw CoxSoapException.Create(e);
            }
        }