Example #1
0
 public BetTreeModel(string name, BetTreeNodeService nodeService, TableModel table)
 {
     Service = nodeService;
     Name = name;
     Table = table;
     SetRoot();
 }
Example #2
0
 public PartialWizard GenerateWizard(BetTreeModel tree, BetTreeNodeService service)
 {
     Type type = System.Type.GetType(Class);
     PartialWizard wizard = Activator.CreateInstance(type) as PartialWizard;
     wizard.Tree = tree;
     wizard.Service = service;
     return wizard;
 }
Example #3
0
        public PartialGenerator(TreePartialMeta meta, BetTreeModel tree, BetTreeNodeModel node, BetTreeNodeService service)
        {
            this.Meta = meta;
            this.Wizard = tree.GeneratePartialWizard(meta);
            this.Tree = tree;
            this.Node = node;
            this.Service = service;

            SetContainer();
        }