예제 #1
0
        public void CopyPropertiesFrom(dboACTPL other, bool withID)
        {
            if (withID)
            {
                this.idactpl = other.idactpl;
            }


            var x = "";

            this.actual = other.actual;

            this.idassvaclientscounties = other.idassvaclientscounties;

            this.month = other.month;

            this.plan = other.plan;

            this.year = other.year;

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