Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Commit af6cba45 authored by qwertyuioplukas@gmail.com's avatar qwertyuioplukas@gmail.com
Browse files

Revert "simulation revert"

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