COA.EnterpriseServices/COA.EnterpriseServices.Creditors/CreditorLibrary.cs

34 lines
906 B
C#
Raw Normal View History

using COA.EnterpriseServices.DataAccess.Helpers;
2020-10-15 12:48:11 +00:00
namespace COA.EnterpriseServices.Creditors
{
2020-10-15 12:48:11 +00:00
public class CreditorLibrary
{
private readonly CreditorHelper creditorHelper;
2020-10-15 12:48:11 +00:00
public CreditorLibrary(CreditorHelper creditorHelper)
{
this.creditorHelper = creditorHelper;
}
public string GetCreditorStatus(int creditorId)
{
var creditor = creditorHelper.GetCreditor(creditorId);
return creditor.creditorStatus;
}
public bool SetCreditorStatus(int creditorId, string status)
{
return creditorHelper.SetCreditorStatus(creditorId, status);
}
public void AddOfferResponse(OfferResponse response)
{
// just a stub until we add actual DataObjects
creditorHelper.SetOriginalCreditorAsPrimary(response.CreditorId);
}
}
}