Created
May 4, 2020 15:36
-
-
Save edwin/0e8b88aab9aa403010d582ace9d7a833 to your computer and use it in GitHub Desktop.
This file contains 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 com.redhat.edwin.repository; | |
import com.redhat.edwin.model.UserProfile; | |
import org.springframework.data.jpa.repository.JpaRepository; | |
/** | |
* <pre> | |
* com.redhat.edwin.repository.UserProfileRepository | |
* </pre> | |
* | |
* @author Muhammad Edwin < edwin at redhat dot com > | |
* 04 Mei 2020 11:53 | |
*/ | |
public interface UserProfileRepository extends JpaRepository<UserProfile, Integer> { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment