Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Commit e21650fc authored by Mochammed Daffa El Ghifari's avatar Mochammed Daffa El Ghifari
Browse files

Revert "Added mock StudentService implementation"

This reverts commit 90ca79bb.
parent 90ca79bb
No related branches found
No related tags found
No related merge requests found
package id.ac.ui.cs.advprog.tutorial0.service;
import id.ac.ui.cs.advprog.tutorial0.model.Student;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class MockStudentServiceImpl implements StudentService{
@Override
public Student create(Student student) {
return null;
}
@Override
public List<Student> findAll() {
return null;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment