From 5d6e52931d1543575c7429c2af74868c6aac666d Mon Sep 17 00:00:00 2001 From: Baryshev Dmitry Date: Wed, 25 Dec 2024 13:40:09 +0400 Subject: [PATCH] =?UTF-8?q?=D0=BC=D0=B0=D0=BB=D0=B5=D0=BD=D1=8C=D0=BA?= =?UTF-8?q?=D0=B0=D1=8F=20=D0=BA=D0=BE=D1=80=D1=80=D0=B5=D0=BA=D1=82=D0=B8?= =?UTF-8?q?=D1=80=D0=BE=D0=B2=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ProjectGarage/Reports/TableReport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectGarage/Reports/TableReport.cs b/ProjectGarage/Reports/TableReport.cs index e4e9e69..f4e6c22 100644 --- a/ProjectGarage/Reports/TableReport.cs +++ b/ProjectGarage/Reports/TableReport.cs @@ -28,7 +28,7 @@ public class TableReport try { new ExcelBuilder(filePath) - .AddHeader("Сводка по движению корма", 0, 4) + .AddHeader("Сводка по движению топлива", 0, 4) .AddParagraph($"за период c {startDate:dd.MM.yyyy} по {endDate: dd.MM.yyyy}", 0) .AddTable([10, 10, 15, 15], GetData(fuelId, startDate, endDate)) .Build();