Search in sources :

Example 6 with Act

use of org.asqatasun.webapp.entity.contract.Act in project Asqatasun by Asqatasun.

the class ActFactoryImpl method createAct.

@Override
public Act createAct(Date date, Contract contract) {
    Act act = create();
    act.setBeginDate(date);
    act.setContract(contract);
    return act;
}
Also used : Act(org.asqatasun.webapp.entity.contract.Act)

Aggregations

Act (org.asqatasun.webapp.entity.contract.Act)6 Audit (org.asqatasun.entity.audit.Audit)2 ForbiddenPageException (org.asqatasun.webapp.exception.ForbiddenPageException)2 Secured (org.springframework.security.access.annotation.Secured)2 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)2 Date (java.util.Date)1 Contract (org.asqatasun.webapp.entity.contract.Contract)1