Exemplo n.º 1
0
        public void CopyPropertiesFrom(dboCategory other, bool withID)
        {
            if (withID)
            {
                this.idcategory = other.idcategory;
            }


            var x = "";

            this.namecategory = other.namecategory;

            this.shortnamecategory = other.shortnamecategory;

            OnCopyConstructor(other, withID);
        }
Exemplo n.º 2
0
 partial void OnCopyConstructor(dboCategory other, bool withID);
Exemplo n.º 3
0
 public dboCategory(dboCategory other) : base()
 {
     OnCopyConstructor(other: other, withID: false);
 }