| 1234567891011121314151617181920 |
- using System.Collections.Generic;
- using Abp.Events.Bus;
- namespace Abp.Domain.Entities
- {
- public interface IAggregateRoot : IAggregateRoot<int>, IEntity
- {
- }
- public interface IAggregateRoot<TPrimaryKey> : IEntity<TPrimaryKey>, IGeneratesDomainEvents
- {
- }
- public interface IGeneratesDomainEvents
- {
- ICollection<IEventData> DomainEvents { get; }
- }
- }
|