示例#1
0
        public void CopyPropertiesFrom(dboCounty other, bool withID)
        {
            if (withID)
            {
                this.idcounty = other.idcounty;
            }


            var x = "";

            this.idRegion = other.idRegion;

            this.namecounty = other.namecounty;

            this.shortnamecounty = other.shortnamecounty;

            OnCopyConstructor(other, withID);
        }
示例#2
0
 partial void OnCopyConstructor(dboCounty other, bool withID);
示例#3
0
 public dboCounty(dboCounty other) : base()
 {
     OnCopyConstructor(other: other, withID: false);
 }