Last active
May 21, 2017 17:42
-
-
Save jogaco/d1a239e1e0b2122eb7f9f44af02632f5 to your computer and use it in GitHub Desktop.
Spring Boot Tutorial
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.operatornew.gamemanager.repository; | |
import com.operatornew.gamemanager.domain.Game; | |
import org.springframework.data.repository.PagingAndSortingRepository; | |
public interface GameRepository extends PagingAndSortingRepository<Game, Integer> { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment