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


            var x = "";

            this.idclient = other.idclient;

            this.idcounty = other.idcounty;

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