Open robmcleish opened 9 years ago
Are you able to submit a pull request?
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.
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.
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)); }