public TaxBaseWithholdArticle(ISourceValues values) : this()
        {
            TaxBaseWithholdSource sourceValues = values as TaxBaseWithholdSource;

            SourceValues = CloneUtils <TaxBaseWithholdSource> .CloneOrNull(sourceValues);
        }
 public override void ImportSourceValues(ISourceValues values)
 {
     SourceValues = SetSourceValues <TaxBaseWithholdSource>(values);
 }
        public TaxBaseWithholdArticle() : base((ConfigRole)ConfigRoleEnum.ARTICLE_TAX_BASE_WITHHOLD)
        {
            SourceValues = new TaxBaseWithholdSource();

            InternalEvaluate = TaxBaseWithholdConcept.EvaluateConcept;
        }