Advertisement
AllyssonAyslan

FoosballRepository.java

Sep 25th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. package com.foosball.repository;
  2.  
  3. import org.springframework.data.repository.CrudRepository;
  4.  
  5. import com.foosball.models.Cadastro;
  6.  
  7. public interface FoosballRepository extends CrudRepository<Cadastro, String>{
  8.    
  9.     Cadastro findById (long id);
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement