Skip to content

Instantly share code, notes, and snippets.

@aarshtalati
Last active March 27, 2018 12:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aarshtalati/5adf731df96cf61d4c2b5df560e1c541 to your computer and use it in GitHub Desktop.
Save aarshtalati/5adf731df96cf61d4c2b5df560e1c541 to your computer and use it in GitHub Desktop.
package edu.gatech.epidemics.dao;
import edu.gatech.epidemics.model.User;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
/**
* @author atalati
*/
@Repository
public interface UserRepository extends CrudRepository<User, Integer> { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment