TaxRuleSettingOperation.java 444 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package pwc.taxtech.atms.dto;

public class TaxRuleSettingOperation {
	 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;
	}
}