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