Skip to content

Commit

Permalink
adoptions-repository
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardmallol committed Mar 6, 2024
1 parent 250481f commit 2a0552d
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 2a0552d

Please sign in to comment.