Skip to content

Instantly share code, notes, and snippets.

@dhaval201279
Last active March 11, 2018 02:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dhaval201279/682751a443b28a421ef8c7b3f20ee5a3 to your computer and use it in GitHub Desktop.
Save dhaval201279/682751a443b28a421ef8c7b3f20ee5a3 to your computer and use it in GitHub Desktop.
1st version of ReservationService - with null as return type
package com.its.reservation.service;
import org.springframework.stereotype.Service;
import com.its.reservation.repository.Reservation;
@Service
public class ReservationService {
public Reservation getReservationDetails(String name) {
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment