Ejemplo n.º 1
0
        public void CopyPropertiesFrom(dbotest other, bool withID)
        {
            this.id = other.id;

            this.name = other.name;

            OnCopyConstructor(other, withID);
        }
Ejemplo n.º 2
0
 partial void OnCopyConstructor(dbotest other, bool withID);
Ejemplo n.º 3
0
 public dbotest(dbotest other) : base()
 {
     OnCopyConstructor(other: other, withID: false);
 }