Ejemplo n.º 1
0
        public void CopyPropertiesFrom(dboClients other, bool withID)
        {
            if (withID)
            {
                this.idclient = other.idclient;
            }


            var x = "";

            this.nameclient = other.nameclient;

            this.shortnameclient = other.shortnameclient;

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