示例#1
0
 public void AddToAllAccountsSignersView(AllAccountsSignersView allAccountsSignersView)
 {
     base.AddObject("AllAccountsSignersView", allAccountsSignersView);
 }
示例#2
0
 public static AllAccountsSignersView CreateAllAccountsSignersView(int account_signer_entitlementID_pk, int accountID_pk, string accountNumber, int signerID_pk)
 {
     AllAccountsSignersView allAccountsSignersView = new AllAccountsSignersView();
     allAccountsSignersView.account_signer_entitlementID_pk = account_signer_entitlementID_pk;
     allAccountsSignersView.accountID_pk = accountID_pk;
     allAccountsSignersView.accountNumber = accountNumber;
     allAccountsSignersView.signerID_pk = signerID_pk;
     return allAccountsSignersView;
 }