Skip to content

Commit

Permalink
Created Shelter repository
Browse files Browse the repository at this point in the history
  • Loading branch information
LordDangerous committed Mar 5, 2024
1 parent d2ac851 commit efaf838
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.Shelter;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.repository.PagingAndSortingRepository;

public interface ShelterRepository extends CrudRepository<Shelter, String>, PagingAndSortingRepository<Shelter, String> {
}

0 comments on commit efaf838

Please sign in to comment.