diff --git a/CompanyManagment.App.Contracts/PaymentInstrument/GetPaymentInstrumentListViewModel.cs b/CompanyManagment.App.Contracts/PaymentInstrument/GetPaymentInstrumentListViewModel.cs
index 85eb37c1..dbe7e876 100644
--- a/CompanyManagment.App.Contracts/PaymentInstrument/GetPaymentInstrumentListViewModel.cs
+++ b/CompanyManagment.App.Contracts/PaymentInstrument/GetPaymentInstrumentListViewModel.cs
@@ -60,4 +60,14 @@ public class PaymentInstrumentItemsViewModel
/// توضیحات
///
public string Description { get; set; }
+
+ ///
+ /// نام صاحب حساب
+ ///
+ public string AccountHolderName { get; set; }
+
+ ///
+ /// نوع
+ ///
+ public PaymentInstrumentType Type { get; set; }
}
\ No newline at end of file
diff --git a/CompanyManagment.EFCore/Repository/PaymentInstrumentRepository.cs b/CompanyManagment.EFCore/Repository/PaymentInstrumentRepository.cs
index 891cb7d1..4d4f0d75 100644
--- a/CompanyManagment.EFCore/Repository/PaymentInstrumentRepository.cs
+++ b/CompanyManagment.EFCore/Repository/PaymentInstrumentRepository.cs
@@ -68,6 +68,8 @@ public class PaymentInstrumentRepository : RepositoryBase