×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Java
Posted by: Andras Madi-Szabo
Added: May 19, 2020 11:11 AM
Views: 4364
Tags: pet vizsga
  1. import com.greenfoxacademy.pet_shelter.models.Human;
  2. import org.springframework.data.repository.CrudRepository;
  3. import org.springframework.stereotype.Repository;
  4.  
  5. public interface HumanRepository extends CrudRepository<Human, Long> {
  6.  
  7. }