java.lang.Object
fr.univtours.examplanner.repositories.DepartmentRepo
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
delete
(@NotNull fr.univtours.examplanner.entities.dtos.DepartmentDTO entity) Permet de supprimer une entité@NotNull List<fr.univtours.examplanner.entities.dtos.DepartmentDTO>
getAll()
Permet d'obtenir toutes les informations sur une table@NotNull fr.univtours.examplanner.entities.dtos.DepartmentDTO
Permet d'obtenir une entité grâce à son identifiant@NotNull fr.univtours.examplanner.entities.dtos.DepartmentDTO
save
(@NotNull fr.univtours.examplanner.entities.dtos.DepartmentDTO entity) Permet de sauvegarder une entité mise en paramètre
-
Constructor Details
-
DepartmentRepo
public DepartmentRepo()
-
-
Method Details
-
save
@NotNull public @NotNull fr.univtours.examplanner.entities.dtos.DepartmentDTO save(@NotNull @NotNull fr.univtours.examplanner.entities.dtos.DepartmentDTO entity) Description copied from interface:BaseRepo
Permet de sauvegarder une entité mise en paramètre -
getAll
Description copied from interface:BaseRepo
Permet d'obtenir toutes les informations sur une table -
getById
@NotNull public @NotNull fr.univtours.examplanner.entities.dtos.DepartmentDTO getById(@NotNull @NotNull String id) Description copied from interface:BaseRepo
Permet d'obtenir une entité grâce à son identifiant -
delete
public boolean delete(@NotNull @NotNull fr.univtours.examplanner.entities.dtos.DepartmentDTO entity) Description copied from interface:BaseRepo
Permet de supprimer une entité
-