From 681ac6eb1a1905b37ab4fcb3686f1c8e62f95586 Mon Sep 17 00:00:00 2001 From: mahan Date: Sun, 28 Sep 2025 15:14:22 +0330 Subject: [PATCH] remove statics for services --- ...etInstitutionContractListItemsViewModel.cs | 25 +++++++++++-------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/CompanyManagment.App.Contracts/InstitutionContract/GetInstitutionContractListItemsViewModel.cs b/CompanyManagment.App.Contracts/InstitutionContract/GetInstitutionContractListItemsViewModel.cs index 2e0f87a2..c32f345d 100644 --- a/CompanyManagment.App.Contracts/InstitutionContract/GetInstitutionContractListItemsViewModel.cs +++ b/CompanyManagment.App.Contracts/InstitutionContract/GetInstitutionContractListItemsViewModel.cs @@ -99,20 +99,23 @@ public class InstitutionContractListWorkshop public class WorkshopServicesViewModel { public bool Insurance { get; set; } - public static string InsuranceLabel ="ارسال لیست بیمه"; + public string InsuranceLabel => "ارسال لیست بیمه"; + public bool InsuranceInPerson { get; set; } - public static string InsuranceInPersonLabel ="خدمات حضوری"; + public string InsuranceInPersonLabel => "خدمات حضوری"; + public bool Contract { get; set; } - public static string ContractLabel ="قرارداد و تصفیه حساب"; - - public bool ContractInPerson { get; set; } - public static string ContractInPersonLabel ="خدمات حضوری"; + public string ContractLabel => "قرارداد و تصفیه حساب"; + + public bool ContractInPerson { get; set; } + public string ContractInPersonLabel => "خدمات حضوری"; + public bool RollCall { get; set; } - public static string RollCallLabel ="ساعت حضور و غیاب"; - + public string RollCallLabel => "ساعت حضور و غیاب"; + public bool RollCallInPerson { get; set; } - public static string RollCallInPersonLabel ="خدمات مستقیم"; - + public string RollCallInPersonLabel => "خدمات مستقیم"; + public bool CustomizeCheckout { get; set; } - public static string CustomizeCheckoutLabel ="فیش غیر رسمی"; + public string CustomizeCheckoutLabel => "فیش غیر رسمی"; } \ No newline at end of file