@Atomic public static TutorshipSummaryPeriod create(TutorshipSummaryPeriodBean bean) { TutorshipSummaryPeriod tutorshipSummaryPeriod = new TutorshipSummaryPeriod( bean.getExecutionSemester(), bean.getBeginDate(), bean.getEndDate()); return tutorshipSummaryPeriod; }
@Atomic public void update(TutorshipSummaryPeriodBean bean) { setBeginDate(bean.getBeginDate()); setEndDate(bean.getEndDate()); }