Beispiel #1
0
        public CMetaobject(Guid ID, IDatabaseProvider Provider)
        {
            this._nameAttribute.Attributes = this._attributes;
            this._shortDescAttribute.Attributes = this._attributes;
            this._fullDescAttribute.Attributes = this._attributes;

            this._attributes.Provider = Provider;           
            this._id = ID;

            this.ObjectGetByID(Provider);
        }
Beispiel #2
0
        public CMetaobject(IDatabaseProvider Provider)
        {
            this._attributes.Provider = Provider;
            this._nameAttribute.Attributes = this._attributes;
            this._shortDescAttribute.Attributes = this._attributes;
            this._fullDescAttribute.Attributes = this._attributes;

            this.Status = EnMetaobjectStatus.EEnabled;
            this.Name = "";
            this.ShortDescription = "";
            this.FullDescription = "";
        }
Beispiel #3
0
        public CMetaobject(decimal Key, IDatabaseProvider Provider)
        {
            this._nameAttribute.Attributes = this._attributes;
            this._shortDescAttribute.Attributes = this._attributes;
            this._fullDescAttribute.Attributes = this._attributes;

            this._attributes.Provider = Provider;
            this._key = Key;

            this.ObjectGetByKey(Provider);
        }
Beispiel #4
0
        public CMetaobject()
        {
            this._nameAttribute.Attributes = this._attributes;
            this._shortDescAttribute.Attributes = this._attributes;
            this._fullDescAttribute.Attributes = this._attributes;

            this.Status = EnMetaobjectStatus.EEnabled;
        }