Update examples

This commit is contained in:
2019-12-29 12:02:00 +01:00
parent c4477aca38
commit ecdd16363a
5 changed files with 75 additions and 26 deletions

View File

@ -0,0 +1,33 @@
package fr.gasser.daoexample.dao.xml;
import fr.gasser.daoexample.dao.Dao;
import fr.gasser.daoexample.model.Student;
import java.util.List;
public class StudentXmlDao implements Dao<Student> {
@Override
public boolean create(Student obj) {
return false;
}
@Override
public Student find(int id) {
return null;
}
@Override
public List<Student> findAll() {
return null;
}
@Override
public boolean update(Student obj) {
return false;
}
@Override
public boolean delete(Student obj) {
return false;
}
}