Adding a customer specific implementation of a controller

  1. Add the new Controller.
  2. Implement the Interface
  3. 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