public void CopyPropertiesFrom(dboClientsCategory other, bool withID)
        {
            if (withID)
            {
                this.id = other.id;
            }


            var x = "";

            this.idcategory = other.idcategory;

            this.idclient = other.idclient;

            OnCopyConstructor(other, withID);
        }
 partial void OnCopyConstructor(dboClientsCategory other, bool withID);
 public dboClientsCategory(dboClientsCategory other) : base()
 {
     OnCopyConstructor(other: other, withID: false);
 }