Programmer AP Creditor v2: Difference between revisions

Content added Content deleted
No edit summary
mNo edit summary
Line 5: Line 5:
===Create new AP Creditor===
===Create new AP Creditor===
<syntaxhighlight lang="csharp">
<syntaxhighlight lang="csharp">
public void CreateNewCreditor(AutoCount.Authentication.UserSession userSession, CreditorSource source)
public void NewCreditor(AutoCount.Authentication.UserSession userSession, CreditorSource source)
{
{
string newCreditorCode = GetNewCreditorCode(userSession, source.ControlAccount, source.CompanyName);
string newCreditorCode = GetNewCreditorCode(userSession, source.ControlAccount, source.CompanyName);
Line 108: Line 108:
};
};


CreateNewCreditor(userSession, newCreditor);
NewCreditor(userSession, newCreditor);
}
}
</syntaxhighlight>
</syntaxhighlight>