1 | |
package org.kuali.student.enrollment.class2.grading.service; |
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | |
|
19 | |
import org.kuali.rice.krad.uif.field.InputField; |
20 | |
import org.kuali.rice.krad.uif.service.ViewHelperService; |
21 | |
import org.kuali.rice.krad.uif.view.View; |
22 | |
import org.kuali.student.enrollment.class2.grading.dataobject.GradeStudent; |
23 | |
import org.kuali.student.enrollment.class2.grading.form.GradingForm; |
24 | |
import org.kuali.student.enrollment.class2.grading.form.StudentGradeForm; |
25 | |
|
26 | |
import java.util.List; |
27 | |
|
28 | |
public interface GradingViewHelperService extends ViewHelperService{ |
29 | |
|
30 | |
public void populateGradeOptions(InputField field, GradingForm gradingForm); |
31 | |
|
32 | |
public void unAssignGrade(View view,Object model,String selectedCollectionPath, Integer selectedLine ); |
33 | |
|
34 | |
public List<GradeStudent> loadStudents(String selectedCourse,GradingForm gradingForm) throws Exception; |
35 | |
|
36 | |
public boolean saveGrades(GradingForm gradingForm)throws Exception; |
37 | |
|
38 | |
public boolean submitGradeRoster(GradingForm gradingForm)throws Exception; |
39 | |
|
40 | |
public void loadStudentGrades(StudentGradeForm studentGradeForm) throws Exception; |
41 | |
|
42 | |
public void loadCourses(GradingForm gradingForm) throws Exception; |
43 | |
|
44 | |
} |