public class StudentGuardianAjaxAction {
public void deleteSelectedAcademy(Integer id) throws Exception {
StudentGuardianService studentGuardianService = (StudentGuardianService) BusinessUtil
.findBusiness("StudentGuardianService");
studentGuardianService.deleteById(id);
}
}