⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aounitundertestpart.cs

📁 ASAMODS BaseModel C#
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;

namespace ASAMODS.BaseModel
{
    public abstract class AoUnitUnderTestPart:AoBase
    {
        #region Base Attributes

        #endregion

        #region Relations
        private IList children;
        private AoMeasurement measurement;
        private AoUnitUnderTest parent_unit_under_test;
        private AoUnitUnderTestPart parent_unit_under_test_part;



        /// <summary>
        /// CHILD
        ///SET[0:?] OF AoUnitUnderTestPart
        /// </summary>
        public IList Children
        {
            get { return children; }
            set { children = value; }
        }

        /// <summary>
        ///INFO_REL
        ///SET[0:?] OF AoMeasurement
        ///INVERSE FOR units_under_test
        /// </summary>
        public AoMeasurement Measurement
        {
            get { return measurement; }
            set { measurement = value; }
        }


        /// <summary>
        /// FATHER
        ///AoUnitUnderTest
        ///INVERSE FOR children
        ///May not exist if parent_unit_under_test_part exists.
        /// </summary>
        public AoUnitUnderTest Parent_unit_under_test
        {
            get { return parent_unit_under_test; }
            set { parent_unit_under_test = value; }
        }

        /// <summary>
        /// FATHER
        ///AoUnitUnderTestPart
        ///INVERSE FOR children
        ///May not exist if parent_unit_under_test exists.
        /// </summary>
        public AoUnitUnderTestPart Parent_unit_under_test_part
        {
            get { return parent_unit_under_test_part; }
            set { parent_unit_under_test_part = value; }
        }

        #endregion
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -