Last active
March 28, 2019 05:58
-
-
Save namila007/bc319df55150041dda81566aa02365f3 to your computer and use it in GitHub Desktop.
Repository
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
@Repository | |
public interface BookRepository extends JpaRepository<Book,Integer> | |
{ | |
} |
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
@Repository | |
public interface PublisherRepository extends JpaRepository<Publisher,Integer> | |
{ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment