add example that doesnt use BaseHelper
This commit is contained in:
@ -16,7 +16,7 @@ namespace COA.EnterpriseServices.Sandbox
|
||||
var creditorHelper = new CreditorHelper();
|
||||
|
||||
// get single creditor
|
||||
var singleCreditor = creditorHelper.Get(1);
|
||||
var singleCreditor = creditorHelper.GetCreditor(1);
|
||||
|
||||
// search creditors
|
||||
var searchedCreditors = creditorHelper.FindByName("Guy");
|
||||
@ -31,7 +31,7 @@ namespace COA.EnterpriseServices.Sandbox
|
||||
Status = "Active"
|
||||
};
|
||||
|
||||
creditorHelper.Add(newCreditor);
|
||||
creditorHelper.AddCreditor(newCreditor);
|
||||
}
|
||||
|
||||
private static void ClientStuff()
|
||||
|
Reference in New Issue
Block a user