Exemple #1
0
        static void Main(string[] args)
        {
            TextEditor textEditor = new TextEditor();
            Compiller compiller = new Compiller();
            CLR clr = new CLR();

            VisualStudioFacade ide = new VisualStudioFacade(textEditor, compiller, clr);

            Programmer programmer = new Programmer();
            programmer.CreateApplication(ide);

            Console.Read();
        }
 public VisualStudioFacade(TextEditor te, Compiller compil, CLR clr)
 {
     this.textEditor = te;
     this.compiller = compil;
     this.clr = clr;
 }