Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Commit 4304f41f authored by Nabila Azzahra's avatar Nabila Azzahra
Browse files

Revert "adding MockStudentServiceImpl"

This reverts commit ed8918f5.
parent ed8918f5
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