f0f48118e7
- Implemented Create, Delete, Get, and Update validators for Product Galleries. - Added Create, Delete, Get, and Update validators for Product Tags. - Created service classes for handling Discount Categories, Discount Orders, Discount Products, Discount Shopping Cart, Product Categories, Product Galleries, and Product Tags. - Each service class integrates with CQRS for command and query handling. - Established mapping profiles for Product Galleries.
14 lines
405 B
C#
14 lines
405 B
C#
namespace CMSMicroservice.Domain.Events;
|
|
|
|
public class RefundTransactionEvent : BaseEvent
|
|
{
|
|
public RefundTransactionEvent(Transaction refundTransaction, Transaction originalTransaction)
|
|
{
|
|
RefundTransaction = refundTransaction;
|
|
OriginalTransaction = originalTransaction;
|
|
}
|
|
|
|
public Transaction RefundTransaction { get; }
|
|
public Transaction OriginalTransaction { get; }
|
|
}
|