From 90d4f65de4be7f7485d2bb3c0942e34705f0d0ce Mon Sep 17 00:00:00 2001 From: masoodafar-web Date: Thu, 21 May 2026 19:27:30 +0330 Subject: [PATCH] chore: add missing using directives for System.Collections.Generic in ZarinpalReconciliationJob and ZarinPalPaymentService files --- .../BackgroundJobs/ZarinpalReconciliationJob.cs | 1 + .../Services/Payment/ZarinPalPaymentService.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/CMSMicroservice.Infrastructure/BackgroundJobs/ZarinpalReconciliationJob.cs b/src/CMSMicroservice.Infrastructure/BackgroundJobs/ZarinpalReconciliationJob.cs index 338ea03..d66f514 100644 --- a/src/CMSMicroservice.Infrastructure/BackgroundJobs/ZarinpalReconciliationJob.cs +++ b/src/CMSMicroservice.Infrastructure/BackgroundJobs/ZarinpalReconciliationJob.cs @@ -1,3 +1,4 @@ +using System.Collections.Generic; using CMSMicroservice.Application.ClubMembershipCQ.Commands.ActivateClubMembership; using CMSMicroservice.Application.Common.Interfaces; using CMSMicroservice.Application.DiscountShopCQ.Commands.CompleteOrderPayment; diff --git a/src/CMSMicroservice.Infrastructure/Services/Payment/ZarinPalPaymentService.cs b/src/CMSMicroservice.Infrastructure/Services/Payment/ZarinPalPaymentService.cs index 23bbdec..4ba2970 100644 --- a/src/CMSMicroservice.Infrastructure/Services/Payment/ZarinPalPaymentService.cs +++ b/src/CMSMicroservice.Infrastructure/Services/Payment/ZarinPalPaymentService.cs @@ -1,3 +1,4 @@ +using System.Collections.Generic; using System.Net.Http; using System.Text; using System.Text.Json;