This commit is contained in:
MeysamMoghaddam
2025-10-13 13:00:03 +03:30
parent 4e56dd1204
commit 408e0bdf79
16 changed files with 63 additions and 12 deletions

View File

@@ -3,6 +3,7 @@ using CMSMicroservice.Protobuf.Protos.Package;
using CMSMicroservice.Protobuf.Protos.User;
using CMSMicroservice.Protobuf.Protos.UserAddress;
using CMSMicroservice.Protobuf.Protos.UserOrder;
using PYMSMicroservice.Protobuf.Protos.Transaction;
namespace FrontOffice.BFF.Application.Common.Interfaces;
@@ -21,4 +22,8 @@ public interface IApplicationContractContext
UserOrderContract.UserOrderContractClient UserOrder { get; }
OtpTokenContract.OtpTokenContractClient OtpToken { get; }
#endregion
#region PYMS
TransactionContract.TransactionContractClient ZarinTransactions { get; }
#endregion
}