pro.jk.ejoker.domain.IAggregateRepository Maven / Gradle / Ivy
package pro.jk.ejoker.domain;
/**
* Represents an aggregate repository.
* @author kimffy
*
* @param
*/
public interface IAggregateRepository {
/**
* Get aggregate by id.
* @param aggregateRootId
* @return
*/
public TAggregateRoot get(String aggregateRootId);
}