This commit is contained in:
Olga Nemt 2023-03-30 16:44:59 +05:00
parent f17cea0f7a
commit 91c87ee70e

View File

@ -47,7 +47,7 @@ namespace AsbCloudWebApi.Controllers
[ProducesResponseType(typeof(IEnumerable<DailyReportDto>), (int)System.Net.HttpStatusCode.OK)] [ProducesResponseType(typeof(IEnumerable<DailyReportDto>), (int)System.Net.HttpStatusCode.OK)]
public async Task<IActionResult> GetListAsync(int idWell, DateOnly? begin, DateOnly? end, CancellationToken token) public async Task<IActionResult> 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); return Ok(result);
} }