示例#1
0
        public subTypeModel(int subTypeID, typeModel type, string subTypeName)
        {
            this.subTypeID = subTypeID;

            this.type = type;

            this.subTypeName = subTypeName;
        }
示例#2
0
        public subTypeModel(int subTypeID, typeModel type, string subTypeName, string description)
        {
            this.type = type;

            this.subTypeID = subTypeID;

            this.subTypeName = subTypeName;

            this.description = description;
        }