Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Commit cc40ec63 authored by alin's avatar alin
Browse files

Revert "simulation-revert"

This reverts commit 6e5a1933.

help
parent 6e5a1933
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