Ejemplo n.º 1
0
 public RecipientAccountResponseHelper(bool ok, RecipientAccountJsonHelper recipientAccount)
 {
     this.ok = ok;
     this.recipientAccount = recipientAccount;
 }
Ejemplo n.º 2
0
 protected static Types.RecipientAccount RecipientAccountJsonHelperToRecipientAccount(RecipientAccountJsonHelper helper)
 {
     Types.RecipientAccount recipientAccount = new Types.RecipientAccount(helper.Type, helper.Currency, helper.Id, helper.Primary, helper.Country, helper.Iban, helper.AccountNum, helper.RecipientAccountId, helper.RouteType, helper.RecipientFees, helper.EmailAddress, helper.AccountHolderName, helper.SwiftBic, helper.BranchId, helper.BankName, helper.BankId, helper.BankAddress, helper.BankCity, helper.BankRegionCode, helper.BankPostalCode);
     return(recipientAccount);
 }