poussecafe.doc.model.processstepdoc.ProcessStepDataAccess Maven / Gradle / Ivy
package poussecafe.doc.model.processstepdoc;
import java.util.List;
import poussecafe.doc.model.boundedcontextdoc.BoundedContextDocId;
import poussecafe.domain.EntityDataAccess;
public interface ProcessStepDataAccess extends EntityDataAccess {
List findByDomainProcess(BoundedContextDocId boundedContextDocId,
String processName);
List findConsuming(BoundedContextDocId boundedContextDocId,
String eventName);
List findProducing(BoundedContextDocId boundedContextDocId,
String eventName);
}