Adding a customer specific implementation of smaller bits of code
namespace Northwind.NewCustomer
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
ENV.AbstractFactory.AddFactory(typeof(Customers.IShowCustomers), typeof(NewShowCustomersScreenForOurGreatNewCustomer));
OrderStrategy.Instance = new NewCustomerOrderStrategy();
Northwind.Program.Main(args);
}
}
}
Help us improve, Edit this page on GitHub
or email us at info@fireflymigration.com