phodal/chapi

View on GitHub
_fixtures/ast/java/arch/domain/AggregateRootA.java

Summary

Maintainability
A
0 mins
Test Coverage
package domain;


public class AggregateRootA extends AggregateRoot {

    private EntityB entity_b;
    private ValueObjectC vo_c; 
    private Router router;
    private AggregateRootB b;

    public AggregateRootA(Router router) {
        this.router = router;
    }
    public void init() {
        router.select();
    }
     
}