Beispiel #1
0
 /**
  * Returns a list of the Areas that a Person owns.
  *
  * @param person whose areas will be found
  * @return list of Areas
  */
 public List<Area> findAreasByOwner(Person person) {
   return areaRepository.findByOwner(person);
 }