COA.EnterpriseServices/COA.EnterpriseServices.Creditors/CreditorController.cs

33 lines
874 B
C#
Raw Permalink Normal View History

2020-10-15 12:48:11 +00:00
namespace COA.EnterpriseServices.Creditors
{
public class CreditorController
{
private readonly CreditorLibrary creditorLibrary;
public CreditorController(CreditorLibrary creditorLibrary)
{
this.creditorLibrary = creditorLibrary;
}
2020-10-16 13:54:09 +00:00
public Creditor GetCreditor(int creditorId)
{
return creditorLibrary.GetCreditor(creditorId);
}
2020-10-15 12:48:11 +00:00
public string GetCreditorStatus(int creditorId)
{
return creditorLibrary.GetCreditorStatus(creditorId);
}
public bool SetCreditorStatus(int creditorId, string status)
{
return creditorLibrary.SetCreditorStatus(creditorId, status);
}
public void AddOfferResponse(OfferResponse response)
2020-10-15 12:48:11 +00:00
{
creditorLibrary.AddOfferResponse(response);
2020-10-15 12:48:11 +00:00
}
}
}