Skip to content

Instantly share code, notes, and snippets.

@thomasmartin-whoz
Created October 6, 2022 15:34
Show Gist options
  • Save thomasmartin-whoz/04f34435a60bfc8b749d11fa143b762d to your computer and use it in GitHub Desktop.
Save thomasmartin-whoz/04f34435a60bfc8b749d11fa143b762d to your computer and use it in GitHub Desktop.
public class PersonService {
@Inject
PersonRepository personRepository
public Person findByFirstName(String firstName){
return personRepository.findByFirstName(firstName)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment