use of org.mifos.customers.personnel.business.PersonnelLevelEntity in project head by mifos.
the class CenterStatusChangeIntegrationTest method updatePersonnel.
private void updatePersonnel(PersonnelBO loanOfficer, PersonnelLevel personnelLevel, PersonnelStatus newStatus, OfficeBO office) throws Exception {
PersonnelStatusEntity newStatusEntity = new PersonnelStatusEntity(newStatus);
loanOfficer.setStatus(newStatusEntity);
PersonnelLevelEntity level = new PersonnelLevelEntity(personnelLevel);
loanOfficer.setLevel(level);
IntegrationTestObjectMother.createPersonnel(loanOfficer);
}
Aggregations