Created
March 27, 2018 11:55
-
-
Save aarshtalati/ab1a407ec7a9001e8affb92d229d4111 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
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