using CMS.Plugin.PipeLineLems.Domain.Shared.MyTestEntityNames;
|
using Volo.Abp.DependencyInjection;
|
using Volo.Abp.EventBus.Distributed;
|
|
namespace CMS.Plugin.PipeLineLems.Domain.EventHandlers;
|
|
/// <summary>
|
/// MyTestEntityName事件处理程序
|
/// </summary>
|
public class MyTestEntityNameEventHandler : IDistributedEventHandler<MyTestEntityNameEto>, ITransientDependency
|
{
|
/// <inheritdoc />
|
public Task HandleEventAsync(MyTestEntityNameEto eventData)
|
{
|
return Task.CompletedTask;
|
}
|
}
|