This commit is contained in:
2020-10-15 22:17:27 -04:00
parent d67c7546ab
commit 82245a693f
4 changed files with 21 additions and 2 deletions

View File

@ -25,8 +25,13 @@ namespace COA.EnterpriseServices.Creditors
public void AddOfferResponse(OfferResponse response)
{
// just a stub until we add actual DataObjects
var creditor = creditorHelper.GetCreditor(response.CreditorId);
// manipulate creditor object directly
creditorHelper.UpdateCreditor(creditor);
// or have individual methods
creditorHelper.SetOriginalCreditorAsPrimary(response.CreditorId);
}
}