public CustomerAuthenticationServiceConfiguration()
        {
            BasicHttpBinding httpBinding = new BasicHttpBinding();

            CustomerAuthenticationServiceClient =
                new CustomerAuthenticationServiceClient(httpBinding, EndPoints.CustomerAuthentication);
        }
 public AccountManager()
 {
     _customerAuthenticationService = 
         new CustomerAuthenticationServiceConfiguration().CustomerAuthenticationServiceClient;
 }