This commit is contained in:
masoodafar-web
2025-11-18 22:38:50 +03:30
parent dba8aecc97
commit f6dcd43346
76 changed files with 3778 additions and 1386 deletions
@@ -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; }
}