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.dub.skoolie.data.dao.schedule.templates.GradingPeriodTemplateRepository.java

/**
 *
 * @author Kevin W
 */
public interface GradingPeriodTemplateRepository extends CrudRepository<GradingPeriodTemplate, Long> {

From source file za.ac.cput.project.universalhardwarestore.repository.ShoppingCartRepository.java

/**
 *
 * @author Garran
 */
public interface ShoppingCartRepository extends CrudRepository<ShoppingCart, Long> {
    //public ShoppingCart findByCustomerAccount(Long id);

From source file com.dub.skoolie.data.dao.schedule.templates.ClassTimeBlockTemplateRepository.java

/**
 *
 * @author Kevin W
 */
public interface ClassTimeBlockTemplateRepository extends CrudRepository<ClassTimeBlockTemplate, Long> {

From source file com.nirwansyah.dicka.springboot.dao.NasabahDAO.java

/**
 *
 * @author dickajava
 */
public interface NasabahDAO extends CrudRepository<Nasabah, Integer> {

From source file pl.com.softproject.altkom.hibernate.dao.springdata.FormFieldComboValueDAO.java

/**
 *
 * @author Adrian Lapierre <adrian@softproject.com.pl>
 */
public interface FormFieldComboValueDAO extends CrudRepository<FormFieldComboValue, Long> {

From source file repositories.RvRepository.java

/**
 *
 * @author Soukaina
 */

public interface RvRepository extends CrudRepository<Rv, Long> {

From source file za.ac.cput.project.universalhardwarestorev2.repository.LoginRepository.java

/**
 *
 * @author garran
 */
public interface LoginRepository extends CrudRepository<Login, Long> {
    public Login findByUserName(String userName);

From source file com.eventbook.repository.ViewerRepository.java

/**
 *
 * @author edureyes1
 */
public interface ViewerRepository extends CrudRepository<Viewer, String> {

From source file org.fatal1t.forexapp.spring.resources.db.SymbolsRepository.java

/**
 *
 * @author Filip
 */
public interface SymbolsRepository extends CrudRepository<Symbol, Long> {
    public List<Symbol> findBySymbol(String symbol);

From source file za.ac.cput.project.universalhardwarestore.repository.CustomerAccountRepository.java

/**
 *
 * @author Garran
 */
public interface CustomerAccountRepository extends CrudRepository<CustomerAccount, Long> {
    public CustomerAccount findByCustomerID(String customerID);