Last active
July 10, 2016 13:53
-
-
Save brunokrebs/f25d05fd7ef9fc4edaf8c4062113886d 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 com.someaddress.repository; | |
import com.someaddress.model.Product; | |
import org.springframework.data.jpa.repository.JpaRepository; | |
public interface ProductRepository extends JpaRepository<Product, String> { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment