EventDay / Infusionsoft.net

A C# Wrapper around the Infusionsoft.com API
15 stars 22 forks source link

Fixed property types to reflect what Infusionsoft is sending #15

Closed MisinformedDNA closed 10 years ago

MisinformedDNA commented 10 years ago

Found some issues while working with the code.

var invoice = infusionsoft.DataService.Query<Invoice>(q => q.Add(o => o.JobId, 123));
var invoicePayment = infusionsoft.DataService.Query<InvoicePayment>(q => q.Add(o => o.InvoiceId, invoice.Id));
var payment = infusionsoft.DataService.Query<Payment>(q => q.Add(o => o.Id, invoicePayment.PaymentId));
var charge = infusionsoft.DataService.Query<CCharge>(q => q.Add(o => o.PaymentId, payment.Id));
trbngr commented 10 years ago

Thanks!