You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
708 B
26 lines
708 B
3 years ago
|
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<EntityCreatedEto<Part>>
|
||
|
{
|
||
|
private readonly ITaPartRepository _taPartRepository;
|
||
|
|
||
|
public PartEventHandler(ITaPartRepository taPartRepository)
|
||
|
{
|
||
|
_taPartRepository = taPartRepository;
|
||
|
}
|
||
|
|
||
|
public Task HandleEventAsync(EntityCreatedEto<Part> eventData)
|
||
|
{
|
||
|
throw new System.NotImplementedException();
|
||
|
|
||
|
//TODO 根据传入数据新增或修改TA_PART
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|