Package org.fenixedu.academic.domain.accounting.events

Examples of org.fenixedu.academic.domain.accounting.events.InsuranceExemption


                break;
            case MIT_AGREEMENT:
                insuranceJustificationType = InsuranceExemptionJustificationType.MIT_AGREEMENT;
            }

            new InsuranceExemption(responsible, administrativeOfficeFeeAndInsuranceEvent, insuranceJustificationType, reason,
                    dispatchDate);
        }

    }
View Full Code Here


    }

    @Atomic
    public static void createInsuranceExemption(final Person responsible, final InsuranceExemptionBean exemptionBean) {
        new InsuranceExemption(responsible, exemptionBean.getInsuranceEvent(), exemptionBean.getJustificationType(),
                exemptionBean.getReason(), exemptionBean.getDispatchDate());
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.accounting.events.InsuranceExemption

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.