コード例 #1
0
ファイル: Reference.cs プロジェクト: wes-cutting/Sandbox-V2
 public long CreatePayforwardPayee1(
     long clientId,
     string wsPassword,
     string customerAccount,
     string firstName,
     string lastName,
     string companyName,
     string address,
     string city,
     string state,
     string zip,
     string country,
     string phone,
     string fax,
     string email,
     string routingAba,
     string bankAccountNum,
     string nameOnAccount,
     string accountType,
     int activeInactiveStatus)
 {
     Rentler.ExternalServices.PayForward.CreatePayforwardPayeeWithStatus inValue = new Rentler.ExternalServices.PayForward.CreatePayforwardPayeeWithStatus();
     inValue.clientId             = clientId;
     inValue.wsPassword           = wsPassword;
     inValue.customerAccount      = customerAccount;
     inValue.firstName            = firstName;
     inValue.lastName             = lastName;
     inValue.companyName          = companyName;
     inValue.address              = address;
     inValue.city                 = city;
     inValue.state                = state;
     inValue.zip                  = zip;
     inValue.country              = country;
     inValue.phone                = phone;
     inValue.fax                  = fax;
     inValue.email                = email;
     inValue.routingAba           = routingAba;
     inValue.bankAccountNum       = bankAccountNum;
     inValue.nameOnAccount        = nameOnAccount;
     inValue.accountType          = accountType;
     inValue.activeInactiveStatus = activeInactiveStatus;
     Rentler.ExternalServices.PayForward.CreatePayforwardPayeeWithStatus1 retVal = ((Rentler.ExternalServices.PayForward.PayforwardSoap)(this)).CreatePayforwardPayee1(inValue);
     return(retVal.CreatePayforwardPayeeWithStatusResult);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: wes-cutting/Sandbox-V2
 Rentler.ExternalServices.PayForward.CreatePayforwardPayeeWithStatus1 Rentler.ExternalServices.PayForward.PayforwardSoap.CreatePayforwardPayee1(Rentler.ExternalServices.PayForward.CreatePayforwardPayeeWithStatus request)
 {
     return(base.Channel.CreatePayforwardPayee1(request));
 }