This commit is contained in:
Parpaillax
2024-05-02 12:05:55 +02:00
18 changed files with 105 additions and 13426 deletions

View File

@@ -22,6 +22,11 @@ public class ArticleServiceImpl implements ArticleService{
return articleRepository.findAllArticle();
}
@Override
public List<Article> findByUser(int id) {
return articleRepository.findByUser(id);
}
@Override
public Article findArticleById(int id) {
return articleRepository.findArticleById(id);