Guest User

Untitled

a guest
Mar 21st, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. package friendsofmine.repositories;
  2.  
  3. import friendsofmine.domain.Article;
  4. import java.util.List;
  5.  
  6. public interface ArticleRepositoryInt {
  7.  
  8. public List<Article> findAllArticles();
  9. public Article findById(int id);
  10. public Article saveArticle(Article article);
  11.  
  12. }
Add Comment
Please, Sign In to add comment