Created
September 14, 2019 23:20
-
-
Save dubeboy/123d02bcf0d3f9fc8d561aadad32d093 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 za.co.dubedivine.groceryapp.repository | |
import org.springframework.data.repository.CrudRepository | |
import org.springframework.stereotype.Repository | |
import za.co.dubedivine.groceryapp.model.GroceryItem | |
@Repository | |
interface GroceryItemRepository: CrudRepository<GroceryItem, Long> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment