This commit is contained in:
masoodafar-web
2025-11-25 05:05:10 +03:30
parent ac97ef5dce
commit 4546add810
4 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,6 @@
using FrontOffice.BFF.UserOrder.Protobuf.Protos.UserOrder;
using MetaData = FrontOffice.BFF.Application.Common.Models.MetaData;
namespace FrontOffice.BFF.Application.UserOrderCQ.Queries.GetAllUserOrderByFilter; namespace FrontOffice.BFF.Application.UserOrderCQ.Queries.GetAllUserOrderByFilter;
public class GetAllUserOrderByFilterResponseDto public class GetAllUserOrderByFilterResponseDto
{ {

View File

@@ -1,3 +1,5 @@
using FrontOffice.BFF.UserOrder.Protobuf.Protos.UserOrder;
namespace FrontOffice.BFF.Application.UserOrderCQ.Queries.GetUserOrder; namespace FrontOffice.BFF.Application.UserOrderCQ.Queries.GetUserOrder;
public class GetUserOrderResponseDto public class GetUserOrderResponseDto
{ {

View File

@@ -4,7 +4,7 @@
<TargetFramework>net9.0</TargetFramework> <TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<Version>0.0.113</Version> <Version>0.0.114</Version>
<DebugType>None</DebugType> <DebugType>None</DebugType>
<DebugSymbols>False</DebugSymbols> <DebugSymbols>False</DebugSymbols>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild> <GeneratePackageOnBuild>False</GeneratePackageOnBuild>

View File

@@ -145,14 +145,14 @@ message GetAllUserOrderByFilterResponseModel
google.protobuf.Int64Value transaction_id = 4; google.protobuf.Int64Value transaction_id = 4;
oneof PaymentStatus_item oneof PaymentStatus_item
{ {
messages.PaymentStatus payment_status = 5; PaymentStatus payment_status = 5;
} }
google.protobuf.Timestamp payment_date = 6; google.protobuf.Timestamp payment_date = 6;
int64 user_id = 7; int64 user_id = 7;
int64 user_address_id = 8; int64 user_address_id = 8;
oneof PaymentMethod_item oneof PaymentMethod_item
{ {
messages.PaymentMethod payment_method = 9; PaymentMethod payment_method = 9;
} }
google.protobuf.StringValue user_address_text = 10; google.protobuf.StringValue user_address_text = 10;
repeated GetAllUserOrderByFilterResponseModelFactorDetail factor_details = 11; repeated GetAllUserOrderByFilterResponseModelFactorDetail factor_details = 11;