public void CopyPropertiesFrom(dboRegion other, bool withID) { if (withID) { this.idRegion = other.idRegion; } var x = ""; this.nameRegion = other.nameRegion; this.shortnameRegion = other.shortnameRegion; OnCopyConstructor(other, withID); }
partial void OnCopyConstructor(dboRegion other, bool withID);
public dboRegion(dboRegion other) : base() { OnCopyConstructor(other: other, withID: false); }