public void BillPaymentCreditCardAddTestUsingoAuth(ServiceContext qboContextoAuth)
 {
     //Creating the BillPayment for Add
     BillPayment billPayment = QBOHelper.CreateBillPaymentCreditCard(qboContextoAuth);
     //Adding the BillPayment
     BillPayment added = Helper.Add <BillPayment>(qboContextoAuth, billPayment);
 }
Beispiel #2
0
        public void BillPaymentCreditCardkAddTestUsingoAuth()
        {
            //Creating the BillPayment for Add
            BillPayment billPayment = QBOHelper.CreateBillPaymentCreditCard(qboContextoAuth);
            //Adding the BillPayment
            BillPayment added = Helper.Add <BillPayment>(qboContextoAuth, billPayment);

            //Verify the added BillPayment
            QBOHelper.VerifyBillPayment(billPayment, added);
        }