Skip to content

Instantly share code, notes, and snippets.

@jotauribe
Last active October 2, 2016 03:55
Show Gist options
  • Save jotauribe/f2ca7b40c6bf8d5ccf939b6f6044dfc7 to your computer and use it in GitHub Desktop.
Save jotauribe/f2ca7b40c6bf8d5ccf939b6f6044dfc7 to your computer and use it in GitHub Desktop.
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