Exemplo n.º 1
0
 private TransactionResponse PayWithCheck(IGateway gw, int? pid, Transaction ti)
 {
     return gw.PayWithCheck(pid ?? 0, AmtToPay ?? 0, Routing, Account, Description, ti.Id, Email,
         First, MiddleInitial, Last, Suffix, Address, Address2, City, State, Country,
         Zip, Phone);
 }
Exemplo n.º 2
0
 private TransactionResponse PayWithCheck(IGateway gw, int?pid, Transaction ti)
 {
     return(gw.PayWithCheck(pid ?? 0, AmtToPay ?? 0, Routing, Account, Description, ti.Id, Email,
                            First, MiddleInitial, Last, Suffix, Address, Address2, City, State, Country,
                            Zip, Phone));
 }
Exemplo n.º 3
0
 private static TransactionResponse PayWithCheck(IGateway gw, PaymentForm pf, int?pid, Transaction ti)
 {
     return(gw.PayWithCheck(pid ?? 0, pf.AmtToPay ?? 0, pf.Routing, pf.Account, pf.Description, ti.Id, pf.Email,
                            pf.First, pf.MiddleInitial, pf.Last, pf.Suffix, pf.Address, pf.Address2, pf.City, pf.State, pf.Country,
                            pf.Zip, pf.Phone));
 }