public void CopyPropertiesFrom(dbotest other, bool withID) { this.id = other.id; this.name = other.name; OnCopyConstructor(other, withID); }
partial void OnCopyConstructor(dbotest other, bool withID);
public dbotest(dbotest other) : base() { OnCopyConstructor(other: other, withID: false); }