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); }
partial void OnCopyConstructor(dboClients other, bool withID);
public dboClients(dboClients other) : base() { OnCopyConstructor(other: other, withID: false); }