예제 #1
0
        public void CopyPropertiesFrom(dbotest other, bool withID)
        {
            this.id = other.id;

            this.name = other.name;

            OnCopyConstructor(other, withID);
        }
예제 #2
0
 partial void OnCopyConstructor(dbotest other, bool withID);
예제 #3
0
 public dbotest(dbotest other) : base()
 {
     OnCopyConstructor(other: other, withID: false);
 }