- 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.
20 lines
512 B
C#
20 lines
512 B
C#
using MediatR;
|
|
|
|
namespace CMSMicroservice.Application.ManualPaymentCQ.Commands.ApproveManualPayment;
|
|
|
|
/// <summary>
|
|
/// دستور تایید پرداخت دستی توسط SuperAdmin
|
|
/// </summary>
|
|
public class ApproveManualPaymentCommand : IRequest<bool>
|
|
{
|
|
/// <summary>
|
|
/// شناسه ManualPayment
|
|
/// </summary>
|
|
public long ManualPaymentId { get; set; }
|
|
|
|
/// <summary>
|
|
/// یادداشت تایید (اختیاری)
|
|
/// </summary>
|
|
public string? ApprovalNote { get; set; }
|
|
}
|