feat: Add discount module with protobuf definitions and gRPC services

This commit is contained in:
masoodafar-web
2025-12-06 01:39:22 +03:30
parent 4aa9f28f6e
commit 09fc0d85af
51 changed files with 1964 additions and 80 deletions

View File

@@ -1,9 +1,9 @@
using BackOffice.BFF.UserOrder.Protobuf.Protos.UserOrder;
using MediatR;
using BffProto = BackOffice.BFF.UserOrder.Protobuf.Protos.UserOrder;
namespace BackOffice.BFF.Application.UserOrderCQ.Commands.UpdateOrderStatus;
public record UpdateOrderStatusCommand : IRequest<UpdateOrderStatusResponse>
public record UpdateOrderStatusCommand : IRequest<BffProto.UpdateOrderStatusResponse>
{
public long OrderId { get; init; }
public int NewStatus { get; init; }