rewrite DAM to be non-generic

This commit is contained in:
2020-10-16 09:54:09 -04:00
parent 79b3b5be1d
commit 3ce8679d80
13 changed files with 237 additions and 154 deletions

View File

@ -9,6 +9,11 @@
this.creditorLibrary = creditorLibrary;
}
public Creditor GetCreditor(int creditorId)
{
return creditorLibrary.GetCreditor(creditorId);
}
public string GetCreditorStatus(int creditorId)
{
return creditorLibrary.GetCreditorStatus(creditorId);

View File

@ -11,6 +11,11 @@ namespace COA.EnterpriseServices.Creditors
this.creditorHelper = creditorHelper;
}
public Creditor GetCreditor(int creditorId)
{
return creditorHelper.GetCreditor(creditorId);
}
public string GetCreditorStatus(int creditorId)
{
var creditor = creditorHelper.GetCreditor(creditorId);