コード例 #1
0
        public new NutritionCourse Clone()
        {
            NutritionCourse nutritionCourse = base.Clone() as NutritionCourse;

            nutritionCourse.oper = oper.Clone();

            return(nutritionCourse);
        }
コード例 #2
0
ファイル: Assay.cs プロジェクト: ewin66/Management-System
        /// <summary>
        /// 复制对象
        /// </summary>
        /// <returns>Assay</returns>
        public new Assay Clone()
        {
            Assay assay = base.Clone() as Assay;

            assay.applyEnv = applyEnv.Clone();
            assay.assayEnv = assayEnv.Clone();
            assay.stencil  = stencil.Clone();
            return(assay);
        }
コード例 #3
0
ファイル: Diagnose.cs プロジェクト: ewin66/Management-System
        public new Diagnose Clone()
        {
            Diagnose DiagnoseClone = (Diagnose)base.Clone();;

            DiagnoseClone.myDiagInfo = this.myDiagInfo.Clone();
            DiagnoseClone.myPVisit   = this.myPVisit.Clone();
            DiagnoseClone.operInfo   = operInfo.Clone();
            return(DiagnoseClone);
        }
コード例 #4
0
        /// <summary>
        /// 克隆函数
        /// </summary>
        /// <returns></returns>
        public new ICDCompare Clone()
        {
            //克隆函数
            ICDCompare icdCompare = base.Clone() as ICDCompare; // 克隆父类

            icdCompare.operInfo = operInfo.Clone();             //克隆
            icdCompare.icd10    = icd10.Clone();                //克隆CD10信息 操作员信息
            icdCompare.icd9     = icd9.Clone();                 //克隆CD9信息
            return(icdCompare);
        }
コード例 #5
0
        /// <summary>
        /// 克隆本体
        /// </summary>
        /// <returns>Case.Fee</returns>
        public new Fee Clone()
        {
            Fee FeeClone = base.MemberwiseClone() as Fee;

            FeeClone.FeeInfo    = this.FeeInfo.Clone();
            FeeClone.DeptInfo   = this.DeptInfo.Clone();
            FeeClone.MainOutICD = this.MainOutICD.Clone();
            FeeClone.operInfo   = operInfo.Clone();

            return(FeeClone);
        }
コード例 #6
0
ファイル: Lend.cs プロジェクト: ewin66/Management-System
        public new Lend Clone()
        {
            Lend LendClone = base.MemberwiseClone() as Lend;

            LendClone.caseBase       = this.caseBase.Clone();
            LendClone.EmployeeInfo   = this.employeeInfo.Clone();;
            LendClone.employeeDept   = this.employeeDept.Clone();
            LendClone.ReturnOperInfo = this.ReturnOperInfo.Clone();
            LendClone.operInfo       = operInfo.Clone();
            return(LendClone);
        }
コード例 #7
0
        /// <summary>
        /// 克隆函数实现
        /// </summary>
        /// <returns></returns>
        public new DrugSpecial Clone()
        {
            DrugSpecial drugSpe = base.Clone() as DrugSpecial;

            drugSpe.speItem = speItem.Clone();

            drugSpe.item = item.Clone();

            drugSpe.oper = oper.Clone();

            return(drugSpe);
        }
コード例 #8
0
        /// <summary>
        /// 克隆
        /// </summary>
        /// <returns></returns>
        public new ShiftProperty Clone()
        {
            ShiftProperty sf = base.Clone() as ShiftProperty;

            sf.reflectType = reflectType.Clone();

            sf.property = property.Clone();

            sf.oper = oper.Clone();

            return(sf);
        }