[BAEL-14274] - Reverted the rename of EventWithFormat to Event

This commit is contained in:
amit2103
2019-10-27 19:52:36 +05:30
parent db85c8f275
commit a840e3505c
20514 changed files with 1642290 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package app.services;
import java.util.List;
import app.models.Article;
public interface ArticleService {
List<Article> getArticles();
Article search(String keyword);
}