Skip to content
Snippets Groups Projects
Commit b5f6d114 authored by Nathanael Malderez's avatar Nathanael Malderez
Browse files

push

parent 8d3e00c1
No related branches found
No related tags found
No related merge requests found
Pipeline #15890 failed
...@@ -24,5 +24,9 @@ public interface TacheDAO { ...@@ -24,5 +24,9 @@ public interface TacheDAO {
@SqlQuery("select * from taches") @SqlQuery("select * from taches")
@RegisterBeanMapper(Tache.class) @RegisterBeanMapper(Tache.class)
List<Tache> getAll(); List<Tache> getAll();
@SqlQuery("select * from taches where id = ?")
@RegisterBeanMapper(Tache.class)
Tache getById(String id);
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment