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

@@ -0,0 +1,79 @@
using System;
using System.Collections.Generic;
namespace XLAB2
{
internal sealed class VerificationReportFilter
{
public int? CustomerId { get; set; }
public int? MeasurementAreaId { get; set; }
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
internal sealed class VerificationReportSummary
{
public int TotalCount { get; set; }
public int GoodCount { get; set; }
public int RejectedCount { get; set; }
public int WithoutResultCount { get; set; }
public int IssuedCount { get; set; }
}
internal sealed class VerificationReportCustomerRow
{
public int? CustomerId { get; set; }
public string CustomerName { get; set; }
public int TotalCount { get; set; }
public int GoodCount { get; set; }
public int RejectedCount { get; set; }
public int WithoutResultCount { get; set; }
public int IssuedCount { get; set; }
}
internal sealed class VerificationReportMeasurementAreaRow
{
public int? MeasurementAreaId { get; set; }
public string MeasurementAreaName { get; set; }
public int TotalCount { get; set; }
public int GoodCount { get; set; }
public int RejectedCount { get; set; }
public int WithoutResultCount { get; set; }
public int IssuedCount { get; set; }
}
internal sealed class VerificationReportData
{
public VerificationReportData()
{
Summary = new VerificationReportSummary();
CustomerRows = Array.Empty<VerificationReportCustomerRow>();
MeasurementAreaRows = Array.Empty<VerificationReportMeasurementAreaRow>();
}
public VerificationReportSummary Summary { get; set; }
public IReadOnlyList<VerificationReportCustomerRow> CustomerRows { get; set; }
public IReadOnlyList<VerificationReportMeasurementAreaRow> MeasurementAreaRows { get; set; }
}
}