poussecafe.doc.model.aggregatedoc.AggregateDocDataAccess Maven / Gradle / Ivy
package poussecafe.doc.model.aggregatedoc;
import java.util.List;
import poussecafe.doc.model.boundedcontextdoc.BoundedContextDocId;
import poussecafe.domain.EntityDataAccess;
public interface AggregateDocDataAccess extends EntityDataAccess {
List findByBoundedContextId(BoundedContextDocId id);
List findByIdClassName(String qualifiedName);
D findByBoundedContextIdAndName(BoundedContextDocId boundedContextDocId,
String aggregateName);
}