An application that allows families to communicate to each other location updates and view location check-in details
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
family-tracker/src/main/java/sig/family/NotificationRepository.java

10 lines
241 B

package sig.family;
import java.util.List;
import org.springframework.data.repository.CrudRepository;
public interface NotificationRepository extends CrudRepository<Notification,Long>{
List<Notification> findByMemberId(Long memberid);
}