Guest User

QuestionRepository.java

a guest
Feb 27th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. package com.example.apidemo.repository;
  2.  
  3. import com.example.apidemo.model.Question;
  4. import org.springframework.data.jpa.repository.JpaRepository;
  5. import org.springframework.stereotype.Repository;
  6.  
  7. @Repository
  8. public interface QuestionRepository extends JpaRepository<Question, Long> {
  9. }
Advertisement
Add Comment
Please, Sign In to add comment