Example #1
0
        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);
        }
Example #2
0
 partial void OnCopyConstructor(dboRegion other, bool withID);
Example #3
0
 public dboRegion(dboRegion other) : base()
 {
     OnCopyConstructor(other: other, withID: false);
 }