Skip to content

Commit

Permalink
added payment repository
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan0dyatlyukkk committed Oct 2, 2023
1 parent 0a2bb33 commit b0652d3
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.project.carsharingapp.repository;

import com.project.carsharingapp.model.Payment;
import org.springframework.data.jpa.repository.JpaRepository;

public interface PaymentRepository extends JpaRepository<Payment, Long> {

}

0 comments on commit b0652d3

Please sign in to comment.