Guest User

Untitled

a guest
Mar 19th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. package com.its.reservation.repository;
  2.  
  3. import org.springframework.data.repository.CrudRepository;
  4.  
  5. public interface ReservationRepository extends CrudRepository<Reservation, Long> {
  6.  
  7. Reservation findByFirstName(String name);
  8. }
Add Comment
Please, Sign In to add comment