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 EmployeeSabbatical extends EmployeeSabbatical_Base { public EmployeeSabbatical(final Employee employee, final LocalDate beginDate, final LocalDate endDate, final DateTime creationDate, final DateTime modifiedDate) { super(); setRootDomainObject(RootDomainObject.getInstance()); setEmployee(employee); setBeginDate(beginDate); setEndDate(endDate); setCreationDate(creationDate); setModifiedDate(modifiedDate); setImportationDate(new DateTime()); } }