Last active
October 2, 2016 03:55
-
-
Save jotauribe/f2ca7b40c6bf8d5ccf939b6f6044dfc7 to your computer and use it in GitHub Desktop.
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 UserDao { | |
List<User> getAllEmployees(); | |
User getUserById(long id); | |
List<User> getUserByAddress(Address address); | |
List<User> getUsersByName(String name); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment