public static CMetaobjectAttributes sGetAttributes(decimal ObjectKey, DataContext Context)
        {
            CMetaobjectAttributes R = new CMetaobjectAttributes()
            {
                ObjectKey = ObjectKey,
                Context = Context
            };
            R.AttributesGet(Context);

            return R;
        }
Exemple #2
0
        public CMetaobject(Guid ID, DataContext Context)
        {
            this._attributes.Context = Context;

            this._nameAttribute.Attributes = this._attributes;
            this._shortDescAttribute.Attributes = this._attributes;
            this._fullDescAttribute.Attributes = this._attributes;

            this.ID = ID;

            this.ObjectGetByID(Context);
        }
Exemple #3
0
        public CMetaobject(DataContext Context)
        {
            this._attributes.Context = Context;

            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 = "";
        }
Exemple #4
0
        public CMetaobject(decimal Key, DataContext Context)
        {
            this._attributes.Context = Context;

            this._nameAttribute.Attributes = this._attributes;
            this._shortDescAttribute.Attributes = this._attributes;
            this._fullDescAttribute.Attributes = this._attributes;

            this._key = Key;

            this.ObjectGetByKey(Context);
        }
Exemple #5
0
 public CMetaobject()
 {
     this._nameAttribute.Attributes = this._attributes;
     this._shortDescAttribute.Attributes = this._attributes;
     this._fullDescAttribute.Attributes = this._attributes;
 }