Merge branch 'Main' into Feature/InstitutionContract/Create-Api

This commit is contained in:
MahanCh
2025-08-02 14:40:51 +03:30
2 changed files with 12 additions and 0 deletions

View File

@@ -60,4 +60,14 @@ public class PaymentInstrumentItemsViewModel
/// توضیحات
/// </summary>
public string Description { get; set; }
/// <summary>
/// نام صاحب حساب
/// </summary>
public string AccountHolderName { get; set; }
/// <summary>
/// نوع
/// </summary>
public PaymentInstrumentType Type { get; set; }
}

View File

@@ -68,6 +68,8 @@ public class PaymentInstrumentRepository : RepositoryBase<long, PaymentInstrumen
PosTerminalId = i.PosTerminalId,
CardNumber = i.CardNumber,
AccountNumber = i.AccountNumber,
AccountHolderName = i.AccountHolderName,
Type = i.Type
}).ToList()
}).Skip(searchModel.PageIndex).Take(30).ToListAsync()