summaryrefslogtreecommitdiff
path: root/spring-boot/04-bank-jpa-rest/src/main/java/com/example/spring/bank/customer/CustomerRepository.java
blob: 8695d666fccbbd87cc12487c32f69af3e98d2556 (plain)
1
2
3
4
5
6
7
package com.example.spring.bank.customer;

import org.springframework.data.repository.ListCrudRepository;

public interface CustomerRepository extends ListCrudRepository<Customer, Long> {
	
}