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); }
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)); }
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)); }