using System.Threading.Tasks; using Volo.Abp.Domain.Entities.Events.Distributed; using Volo.Abp.EventBus; using Win_in.Sfs.Scp.v1.Domain; using Win_in.Sfs.Scp.WebApi; namespace Win_in.Sfs.Scp.v1.Event { public class PartEventHandler:ILocalEventHandler> { private readonly ITaPartRepository _taPartRepository; public PartEventHandler(ITaPartRepository taPartRepository) { _taPartRepository = taPartRepository; } public Task HandleEventAsync(EntityCreatedEto eventData) { throw new System.NotImplementedException(); //TODO 根据传入数据新增或修改TA_PART } } }