AccountAttributeRepository.java 251 Bytes
package org.legrog.entities;

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

@Eager
public interface AccountAttributeRepository extends JpaRepository<AccountAttribute, Integer> {
}