rewrite DAM to be non-generic
This commit is contained in:
@ -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);
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user