示例#1
0
        public void CopyPropertiesFrom(dboAssVA other, bool withID)
        {
            if (withID)
            {
                this.idassva = other.idassva;
            }


            var x = "";

            this.idmanager = other.idmanager;

            this.nameassva = other.nameassva;

            this.shortnameassva = other.shortnameassva;

            OnCopyConstructor(other, withID);
        }
示例#2
0
 partial void OnCopyConstructor(dboAssVA other, bool withID);
示例#3
0
 public dboAssVA(dboAssVA other) : base()
 {
     OnCopyConstructor(other: other, withID: false);
 }