EventDay / Infusionsoft.net

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

Issue in LocateExistingCard #30

Open robmcleish opened 9 years ago

robmcleish commented 9 years ago

HI there i have just identified an issue in LocateExistingCard. Your method signature currently has public virtual int LocateExistingCard(int contactId, int last4) { return Invoke(d => d.LocateExistingCard(ApiKey, contactId, last4)); }

But needs to be
public virtual int LocateExistingCard(int contactId, string last4) { return Invoke(d => d.LocateExistingCard(ApiKey, contactId, last4)); }

trbngr commented 9 years ago

Are you able to submit a pull request?

robmcleish commented 9 years ago

Chris

Sorry, I am not sure what you mean. Are you talking about pulling code from GitHub?

Robert

On 30 Jun 2015, at 08:18, Chris Martin notifications@github.com wrote:

Are you able to submit a pull request?

— Reply to this email directly or view it on GitHub.

trbngr commented 9 years ago

I understand ;)

What you do, is fork this repository, make your changes and commit them to your repository. Then you can issue what GitHub calls a Pull Request.

https://help.github.com/articles/using-pull-requests/

If you can't figure it out, I'll try to remember to change the code.

Thanks for contributing.