This commit is contained in:
Курнат Андрей
2026-03-22 21:44:29 +03:00
parent a47a7a5a3b
commit 7bbca6ba55
750 changed files with 13718 additions and 43 deletions

View File

@@ -40,6 +40,7 @@ namespace XLAB2
private DateTime? _issuedOn;
private int _itemCount;
private int _passedCount;
private string _serialNumbersText;
public DateTime? AcceptedOn
{
@@ -89,6 +90,12 @@ namespace XLAB2
set { SetProperty(ref _documentNumber, value); }
}
public string SerialNumbersText
{
get { return _serialNumbersText; }
set { SetProperty(ref _serialNumbersText, value); }
}
public int FailedCount
{
get { return _failedCount; }
@@ -346,6 +353,8 @@ namespace XLAB2
public string RegistryNumber { get; set; }
public string SerialNumbersText { get; set; }
public int InVerificationCount { get; set; }
public int VerifiedCount { get; set; }