Repository.java
package com.customerapp.practice.repository;
import com.customerapp.practice.model.Customer;
import org.springframework.data.jpa.repository.JpaRepository;
public interface CustomerRepository extends JpaRepository<Customer, Long
> {
}
Comments
Post a Comment