All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy