This commit is contained in:
MeysamMoghaddam
2025-10-13 13:04:59 +03:30
parent 5abd0fc033
commit 361f9268a3
6 changed files with 377 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ using FrontOffice.BFF.Package.Protobuf.Protos.Package;
using FrontOffice.BFF.User.Protobuf.Protos.User;
using FrontOffice.BFF.UserAddress.Protobuf.Protos.UserAddress;
using FrontOffice.BFF.UserOrder.Protobuf.Protos.UserOrder;
using FrontOffice.BFF.Transaction.Protobuf.Protos.Transaction;
namespace Microsoft.Extensions.DependencyInjection;
@@ -55,6 +56,7 @@ public static class ConfigureServices
services.AddScoped(CreateAuthenticatedClient<UserContract.UserContractClient>);
services.AddScoped(CreateAuthenticatedClient<UserAddressContract.UserAddressContractClient>);
services.AddScoped(CreateAuthenticatedClient<UserOrderContract.UserOrderContractClient>);
services.AddScoped(CreateAuthenticatedClient<TransactionContract.TransactionContractClient>);
return services;
}