コード例 #1
0
ファイル: dboCountryBL.cs プロジェクト: ignatandrei/KPI
        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);
        }
コード例 #2
0
ファイル: dboCountryBL.cs プロジェクト: ignatandrei/KPI
 partial void OnCopyConstructor(dboRegion other, bool withID);
コード例 #3
0
ファイル: dboCountryBL.cs プロジェクト: ignatandrei/KPI
 public dboRegion(dboRegion other) : base()
 {
     OnCopyConstructor(other: other, withID: false);
 }