using System.Collections.Generic; using Abp.Events.Bus; namespace Abp.Domain.Entities { public interface IAggregateRoot : IAggregateRoot, IEntity { } public interface IAggregateRoot : IEntity, IGeneratesDomainEvents { } public interface IGeneratesDomainEvents { ICollection DomainEvents { get; } } }