예제 #1
0
        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);
        }
예제 #2
0
        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);
        }
예제 #3
0
        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);
        }