package net.sourceforge.fenixedu.domain.personnelSection.contracts; import net.sourceforge.fenixedu.domain.Employee; import net.sourceforge.fenixedu.domain.RootDomainObject; import org.joda.time.DateTime; import org.joda.time.LocalDate; public class EmployeeServiceExemption extends EmployeeServiceExemption_Base { public EmployeeServiceExemption(final Employee employee, final LocalDate beginDate, final LocalDate endDate, final ServiceExemption serviceExemption, final DateTime creationDate, final DateTime modifiedDate) { super(); setRootDomainObject(RootDomainObject.getInstance()); setEmployee(employee); setBeginDate(beginDate); setEndDate(endDate); setServiceExemption(serviceExemption); setCreationDate(creationDate); setModifiedDate(modifiedDate); setImportationDate(new DateTime()); } }