Exemple #1
0
        public override void Prepare()
        {
            var misc   = new Components.Misc(vgcApi, settings, formMgr);
            var web    = new Components.Web(vgcApi);
            var server = new Components.Server(vgcApi);

            AddChild(misc);
            AddChild(web);
            AddChild(server);
        }
Exemple #2
0
        public override void Prepare()
        {
            var misc   = new Components.Misc(settings, vgcApi);
            var json   = new Components.Json(vgcApi);
            var web    = new Components.Web(vgcApi);
            var server = new Components.Server(vgcApi);

            Plug(this, misc);
            Plug(this, json);
            Plug(this, web);
            Plug(this, server);
        }
Exemple #3
0
        public override void Prepare()
        {
            var misc   = new Components.Misc(settings, vgcApi);
            var json   = new Components.Json(vgcApi);
            var web    = new Components.Web(vgcApi);
            var server = new Components.Server(vgcApi);

            AddChild(misc);
            AddChild(json);
            AddChild(web);
            AddChild(server);
        }