Adding a customer specific implementation of a controller
- Add the new Controller.
- Implement the Interface
- Register the Abstract Factory
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));
Northwind.Program.Main(args);
}
}
}
Help us improve, Edit this page on GitHub
or email us at info@fireflymigration.com