Article Repository

This commit is contained in:
mepiphana2023
2024-04-23 10:41:06 +02:00
parent 39efe3212f
commit fd22ea2db0
7 changed files with 33 additions and 4 deletions

View File

@@ -11,4 +11,5 @@ public interface ArticleService {
void saveArticle(Article article);
void deleteArticle(int id);
void updateArticle(int id);
List<Article> findArticleByTitle(String title);
}