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