using COA.EnterpriseServices.Creditors; using COA.EnterpriseServices.DataAccess; using System; namespace COA.EnterpriseServices.Sandbox { internal class Program { private static void Main(string[] args) { var creditorController = Dependencies.Container.GetInstance(); //Console.WriteLine(creditorController.GetCreditorStatus(1)); Console.WriteLine(creditorController.SetCreditorStatus(1, "Active")); //creditorController.AddOfferResponse(new OfferResponse //{ // CreditorId = 1 //}); Console.ReadLine(); } } }