added COA packages, added mapping profiles, updated creditor fields

This commit is contained in:
2020-10-15 09:34:25 -04:00
parent 4630b54fd2
commit be0bc54bb9
17 changed files with 239 additions and 47 deletions

View File

@ -1,7 +1,6 @@
using COA.EnterpriseServices.Creditors;
using COA.EnterpriseServices.DataAccess;
using System;
using System.Runtime.CompilerServices;
namespace COA.EnterpriseServices.Sandbox
{
@ -11,10 +10,13 @@ namespace COA.EnterpriseServices.Sandbox
{
var creditorController = Dependencies.Container.GetInstance<CreditorController>();
//Console.WriteLine(creditorController.GetCreditorStatus(1));
Console.WriteLine(creditorController.GetCreditorStatus(1));
//Console.WriteLine(creditorController.SetCreditorStatus(1, "Active"));
creditorController.AddOfferResponse();
//creditorController.AddOfferResponse(new OfferResponse
//{
// CreditorId = 1
//});
Console.ReadLine();
}