You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
virtual-patient/virtual-patient-graph/src/main/java/com/supervision/repo/AncillaryRepository.java

12 lines
291 B
Java

1 year ago
package com.supervision.repo;
import com.supervision.node.AncillaryNode;
import org.springframework.data.neo4j.repository.Neo4jRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface AncillaryRepository extends Neo4jRepository<AncillaryNode, Long> {
}