update
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace CMSMicroservice.Domain.Events;
|
||||
public class CreateNewPruductTagEvent : BaseEvent
|
||||
{
|
||||
public CreateNewPruductTagEvent(PruductTag item)
|
||||
{
|
||||
Item = item;
|
||||
}
|
||||
public PruductTag Item { get; }
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
namespace CMSMicroservice.Domain.Events;
|
||||
public class DeletePruductTagEvent : BaseEvent
|
||||
{
|
||||
public DeletePruductTagEvent(PruductTag item)
|
||||
{
|
||||
Item = item;
|
||||
}
|
||||
public PruductTag Item { get; }
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
namespace CMSMicroservice.Domain.Events;
|
||||
public class UpdatePruductTagEvent : BaseEvent
|
||||
{
|
||||
public UpdatePruductTagEvent(PruductTag item)
|
||||
{
|
||||
Item = item;
|
||||
}
|
||||
public PruductTag Item { get; }
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
namespace CMSMicroservice.Domain.Events;
|
||||
public class CreateNewTagEvent : BaseEvent
|
||||
{
|
||||
public CreateNewTagEvent(Tag item)
|
||||
{
|
||||
Item = item;
|
||||
}
|
||||
|
||||
public Tag Item { get; }
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
namespace CMSMicroservice.Domain.Events;
|
||||
public class DeleteTagEvent : BaseEvent
|
||||
{
|
||||
public DeleteTagEvent(Tag item)
|
||||
{
|
||||
Item = item;
|
||||
}
|
||||
|
||||
public Tag Item { get; }
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
namespace CMSMicroservice.Domain.Events;
|
||||
public class UpdateTagEvent : BaseEvent
|
||||
{
|
||||
public UpdateTagEvent(Tag item)
|
||||
{
|
||||
Item = item;
|
||||
}
|
||||
|
||||
public Tag Item { get; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user