Skip to content

Commit

Permalink
Merge pull request #22 from UdL-EPS-SoftArch/adoptions-repository
Browse files Browse the repository at this point in the history
adoptions-repository
  • Loading branch information
elskater98 authored Mar 6, 2024
2 parents 819d51e + 2a0552d commit 8aebd15
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 cat.udl.eps.softarch.demo.repository;

import cat.udl.eps.softarch.demo.domain.Adoptions;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.repository.PagingAndSortingRepository;

public interface AdoptionsRepository extends CrudRepository<Adoptions, String>, PagingAndSortingRepository<Adoptions, String> {
}

0 comments on commit 8aebd15

Please sign in to comment.