mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-19 16:06:36 +08:00
17 lines
515 B
C#
17 lines
515 B
C#
|
|
using Volo.Abp.DependencyInjection;
|
|||
|
|
using Volo.Abp.Domain.Entities.Events;
|
|||
|
|
using Volo.Abp.EventBus;
|
|||
|
|
using Yi.Framework.Bbs.Domain.Entities;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.Bbs.Domain.EventHandlers
|
|||
|
|
{
|
|||
|
|
public class BbsNoticeCreatedEventHandler : ILocalEventHandler<EntityCreatedEventData<BbsNoticeAggregateRoot>>,
|
|||
|
|
ITransientDependency
|
|||
|
|
{
|
|||
|
|
public Task HandleEventAsync(EntityCreatedEventData<BbsNoticeAggregateRoot> eventData)
|
|||
|
|
{
|
|||
|
|
throw new NotImplementedException();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|