Jaime Ramírez
2020-06-04 bae32892252843645e0116a049c3bca495ea43f8
1
2
3
4
5
6
7
8
9
10
package com.redhat.do328.adoptApup.animalservice.dao;
 
import com.redhat.do328.adoptApup.animalservice.model.AnimalNotificationRequestCriteria;
import org.springframework.data.repository.PagingAndSortingRepository;
 
import java.util.List;
 
public interface AnimalNotificationSubscriptionRepository extends PagingAndSortingRepository<AnimalNotificationRequestCriteria, String> {
    List<AnimalNotificationRequestCriteria> findAll();
}