add example that doesnt use BaseHelper

This commit is contained in:
2020-10-14 12:23:04 -04:00
parent 97622a576c
commit 9dca60bec7
2 changed files with 32 additions and 5 deletions

View File

@ -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()