Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue in LocateExistingCard #30

Open
robmcleish opened this issue Jun 28, 2015 · 3 comments
Open

Issue in LocateExistingCard #30

robmcleish opened this issue Jun 28, 2015 · 3 comments

Comments

@robmcleish
Copy link

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
Copy link
Contributor

trbngr commented Jun 29, 2015

Are you able to submit a pull request?

@robmcleish
Copy link
Author

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 [email protected] wrote:

Are you able to submit a pull request?


Reply to this email directly or view it on GitHub.

@trbngr
Copy link
Contributor

trbngr commented Jun 29, 2015

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants