From 91c87ee70eac5a5565b9b3d4385c269f826d9a41 Mon Sep 17 00:00:00 2001 From: Olga Nemt Date: Thu, 30 Mar 2023 16:44:59 +0500 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AsbCloudWebApi/Controllers/DailyReportController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AsbCloudWebApi/Controllers/DailyReportController.cs b/AsbCloudWebApi/Controllers/DailyReportController.cs index 4547f31f..11183a4e 100644 --- a/AsbCloudWebApi/Controllers/DailyReportController.cs +++ b/AsbCloudWebApi/Controllers/DailyReportController.cs @@ -47,7 +47,7 @@ namespace AsbCloudWebApi.Controllers [ProducesResponseType(typeof(IEnumerable), (int)System.Net.HttpStatusCode.OK)] public async Task GetListAsync(int idWell, DateOnly? begin, DateOnly? end, CancellationToken token) { - var result = await dailyReportService.GetListAsync(idWell, null, null, token); + var result = await dailyReportService.GetListAsync(idWell, begin, end, token); return Ok(result); }