public static void TransferToCard(PaySession sess) { var transferTA = sess.Transfer(null, Account.EmptyInstance, FakePaySystemHost.CARD_DEBIT_ACCOUNT_STRIPE_CORRECT, new NFX.Financial.Amount("usd", 27.00M)); Assert.IsNotNull(transferTA); }
public static void TransferToCardWithBillingAddressInfo(PaySession sess) { var transferTA = sess.Transfer(null, Account.EmptyInstance, FakePaySystemHost.CARD_DEBIT_ACCOUNT_STRIPE_CORRECT_WITH_ADDRESS, new NFX.Financial.Amount("usd", 55.00M)); Assert.IsNotNull(transferTA); }
public static void TransferToBank(PaySession sess) { var transferTA = sess.Transfer(null, Account.EmptyInstance, FakePaySystemHost.BANK_ACCOUNT_STRIPE_CORRECT, new NFX.Financial.Amount("usd", 183.90M)); Assert.IsNotNull(transferTA); }