use of io.spine.server.aggregate.given.aggregate.AmishAggregate in project core-java by SpineEventEngine.
the class AggregateShould method newAmishAggregate.
private static AmishAggregate newAmishAggregate(ProjectId id) {
final AmishAggregate result = new AmishAggregate(id);
result.init();
return result;
}
Aggregations