TaxRuleSettingOperation.java 497 Bytes
Newer Older
1 2 3
package pwc.taxtech.atms.dto;

public class TaxRuleSettingOperation {
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
    private String Action;
    private TaxRuleSettingDto TaxRuleSetting;

    public String getAction() {
        return Action;
    }

    public void setAction(String action) {
        Action = action;
    }

    public TaxRuleSettingDto getTaxRuleSetting() {
        return TaxRuleSetting;
    }

    public void setTaxRuleSetting(TaxRuleSettingDto taxPayerReportRule) {
        TaxRuleSetting = taxPayerReportRule;
    }
22
}