All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.deepdreams.worker.api.models.PayrollResponse Maven / Gradle / Ivy

There is a newer version: 0.1.1-RELEASE
Show newest version
package tech.deepdreams.worker.api.models;
import java.util.ArrayList;
import java.util.List;

public class PayrollResponse {
	private Double grossSalary ;
	
	private Double employeeDeductions ;
	
	private Double employerDeductions ;
	
	private Double netSalary ;
	

	private List deductions = new ArrayList() ;
	
	
	public PayrollResponse() {
		
	}


	public Double getGrossSalary() {
		return grossSalary;
	}


	public void setGrossSalary(Double grossSalary) {
		this.grossSalary = grossSalary;
	}


	public Double getEmployeeDeductions() {
		return employeeDeductions;
	}


	public void setEmployeeDeductions(Double employeeDeductions) {
		this.employeeDeductions = employeeDeductions;
	}


	public Double getEmployerDeductions() {
		return employerDeductions;
	}


	public void setEmployerDeductions(Double employerDeductions) {
		this.employerDeductions = employerDeductions;
	}


	public Double getNetSalary() {
		return netSalary;
	}


	public void setNetSalary(Double netSalary) {
		this.netSalary = netSalary;
	}


	public void addDeduction(Deduction deduction) {
		 deductions.add(deduction) ;
	}


	public List getDeductions() {
		return deductions.subList(0, deductions.size()) ;
	}
	
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy