public class CreatePhdRegistrationFeePenaltyExemption {
@Atomic
public static void run(final Person responsible, final CreatePhdRegistrationFeePenaltyExemptionBean penaltyExemptionBean) {
check(AcademicPredicates.MANAGE_STUDENT_PAYMENTS);
new PhdRegistrationFeePenaltyExemption(penaltyExemptionBean.getJustificationType(), penaltyExemptionBean.getEvent(),
responsible, penaltyExemptionBean.getReason(), penaltyExemptionBean.getDispatchDate());
}