Commit 4fddf33f authored by Kyle Muldoon's avatar Kyle Muldoon

Added comments on controller and services files

parent 74494af2
...@@ -15,13 +15,15 @@ public class StudentMarksController { ...@@ -15,13 +15,15 @@ public class StudentMarksController {
@Autowired StudentService studentService; @Autowired StudentService studentService;
// findall studentmarks // (GET) findall studentmarks
// find studentmark by id // (POST) create studentmark
// update studentmark by id // (GET) find studentmark by id
// delete studentmark by id // (PUT) update studentmark by id
// (DELETE) delete studentmark by id
......
...@@ -13,6 +13,11 @@ public class StudentService { ...@@ -13,6 +13,11 @@ public class StudentService {
@Autowired StudentRepository studentRepository; @Autowired StudentRepository studentRepository;
////////////////////////////////////////////////////////////////
// FEEL FREE TO MODIFY THE FUNCTION RETURN TYPES / NAMES / INPUT PARAMETERS
////////////////////////////////////////////////////////////////
public List<StudentMarks> findAllStudents() { public List<StudentMarks> findAllStudents() {
return null; return null;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment