示例#1
0
        public MinimumDeduct(string label, Amount mind, ENUM_DEDUCTIBLE_OPTION bAbsorbing)
        {
            this.m_mind = mind;

            this.m_bAbsorbing = bAbsorbing;

            base.label      = label;
            base.m_priority = 1;
        }
示例#2
0
        public MinimumDeduct(double mind, bool bAbsorbing)
        {
            this.m_mind       = new Amount();
            this.m_mind.value = mind;

            this.m_bAbsorbing = bAbsorbing == true ? ENUM_DEDUCTIBLE_OPTION.OPTION_DED_ABSORBABLE : ENUM_DEDUCTIBLE_OPTION.OPTION_NONE;

            base.m_priority = 1;
        }