|
|
@ -15,6 +15,7 @@ public class ProductReceiptNoteEventHandler |
|
|
|
: StoreEventHandlerBase |
|
|
|
, ILocalEventHandler<SfsCreatedEntityEventData<ProductReceiptNote>> |
|
|
|
, ILocalEventHandler<SfsCreatedEntityEventData<List<ProductReceiptNote>>> |
|
|
|
,ILocalEventHandler<SfsHandledEntityEventData<ProductReceiptNote>> |
|
|
|
{ |
|
|
|
private readonly IPutawayJobAppService _putawayJobAppService; |
|
|
|
|
|
|
@ -91,4 +92,9 @@ public class ProductReceiptNoteEventHandler |
|
|
|
dto.JobStatus = EnumJobStatus.Open; |
|
|
|
return dto; |
|
|
|
} |
|
|
|
|
|
|
|
public virtual async Task HandleEventAsync(SfsHandledEntityEventData<ProductReceiptNote> eventData) |
|
|
|
{ |
|
|
|
throw new System.NotImplementedException(); |
|
|
|
} |
|
|
|
} |
|
|
|