コード例 #1
0
        public void CopyPropertiesFrom(dboClients other, bool withID)
        {
            if (withID)
            {
                this.idclient = other.idclient;
            }


            var x = "";

            this.nameclient = other.nameclient;

            this.shortnameclient = other.shortnameclient;

            OnCopyConstructor(other, withID);
        }
コード例 #2
0
 partial void OnCopyConstructor(dboClients other, bool withID);
コード例 #3
0
 public dboClients(dboClients other) : base()
 {
     OnCopyConstructor(other: other, withID: false);
 }