Ejemplo n.º 1
0
        //private DBViewControlType dbViewControlType = DBViewControlType.DBGridView;
        //private DBViewControl dbViewControl = null;

        public GUIEntityInfo(ContextObject owner)
            : base(owner)
        {
            //DBViewControl = new DBGridView(this);
            Fields      = new ContextObjectList <GUIColumnInfo>(this);
            DetailViews = new ContextObjectList <GUIEntityInfo>(this);
        }
Ejemplo n.º 2
0
        public Database(ContextObject owner)
            : base(owner)
        {
            Connection = new Connection(this);

            Tables = new ContextObjectList <TableInfo>(this);
            Views  = new ContextObjectList <ViewInfo>(this);
        }
Ejemplo n.º 3
0
        //private string name;
        //private string caption;
        //private string description;

        public GUIModule(ContextObject owner)
            : base(owner)
        {
            Windows = new ContextObjectList <GUIWindow>(this);
        }
Ejemplo n.º 4
0
 public GUIWindow(ContextObject owner)
     : base(owner)
 {
     MasterViews = new ContextObjectList <GUIEntityInfo>(this);
 }
Ejemplo n.º 5
0
 public GUISystemModule(ContextObject owner)
     : base(owner)
 {
     Modules = new ContextObjectList <GUIModule>(this);
 }
Ejemplo n.º 6
0
 public GUIDialog(ContextObject owner)
     : base(owner)
 {
     Entities = new ContextObjectList <EntityInfo>(this);
 }
Ejemplo n.º 7
0
 public EntityInfo(ContextObject owner)
     : base(owner)
 {
     Columns     = new ContextObjectList <ColumnInfo>(this);
     this.Schema = "dbo";
 }