Example usage for org.springframework.data.repository CrudRepository interface-usage

List of usage examples for org.springframework.data.repository CrudRepository interface-usage

Introduction

In this page you can find the example usage for org.springframework.data.repository CrudRepository interface-usage.

Usage

From source file com.taurus.compratae.db.repository.TiendaRepository.java

/**
 *
 * @author Rosy
 */
public interface TiendaRepository extends CrudRepository<Tienda, Integer> {

From source file ch.heigvd.gamification.services.dao.EventRepository.java

/**
 *
 * @author Thibaut-PC
 */
public interface EventRepository extends CrudRepository<Event, Long> {

From source file com.cosw.productsmaster.rep.RepositorioLugares.java

/**
 *
 * @author HOMERO
 */
public interface RepositorioLugares extends CrudRepository<Lugar, Integer> {

From source file com.semmzemm.groovyscheduler.TaskRepository.java

/**
 * Used for JPA functionality. Objects are automatically instantiated by Spring 
 */
@Repository
public interface TaskRepository extends CrudRepository<Task, Integer> {

From source file com.agroservices.persistence.TransaccionesBancariasRepository.java

/**
 *
 * @author Andres Barrero
 */
public interface TransaccionesBancariasRepository extends CrudRepository<TransaccionBancaria, Integer> {

From source file com.cosw.productsmaster.rep.RepositorioTiendas.java

/**
 *
 * @author HOMERO
 */
public interface RepositorioTiendas extends CrudRepository<Tienda, Integer> {

From source file com.taurus.compratae.db.repository.TerminalRepository.java

/**
 *
 * @author Rosy
 */
public interface TerminalRepository extends CrudRepository<Terminal, Integer> {

From source file fr.gmjgav.repository.ReportRepository.java

/**
 *
 * @author Gilles
 */
public interface ReportRepository extends CrudRepository<Report, Long> {
    List<Report> findByBarIdAndBeerId(long barId, long beerId);

From source file pl.p.lodz.ftims.server.persistence.IHintsPersistence.java

/**
 *
 * @author Wojciech Szaapski
 */
public interface IHintsPersistence extends CrudRepository<Hint, Integer> {

From source file streaming.service.GenreCrudService.java

/**
 *
 * @author admin
 */
public interface GenreCrudService extends CrudRepository<Genre, Long> {