Created
March 18, 2013 18:10
-
-
Save nazartm/5189398 to your computer and use it in GitHub Desktop.
Business interface of a service
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface BlogService { | |
List<MyPost> getPosts(); | |
MyPost getPost(int id); | |
int addPost(MyPost post); | |
boolean updatePost(int id, MyPost post); | |
boolean deletePost(int id); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment