Skip to content

Instantly share code, notes, and snippets.

@aarshtalati
Created March 27, 2018 11:55
Show Gist options
  • Save aarshtalati/ab1a407ec7a9001e8affb92d229d4111 to your computer and use it in GitHub Desktop.
Save aarshtalati/ab1a407ec7a9001e8affb92d229d4111 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