AccountPropertyRepository.java 249 Bytes
package org.legrog.entities;

import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.repository.cdi.Eager;

@Eager
public interface AccountPropertyRepository extends JpaRepository<AccountProperty, Integer> {
}