Example #1
0
        static void Main(string[] args)
        {
            TextEditor textEditor = new TextEditor();

            Comiler comiler = new Comiler();

            CLR clr = new CLR();

            VSFacade ide = new VSFacade(textEditor, comiler, clr);

            Programmer programmer = new Programmer();

            programmer.CreateApplication(ide);

            Console.ReadKey();
        }
Example #2
0
 public void CreateApplication(VSFacade facade)
 {
     facade.Start();
     facade.Stop();
 }