Настройка в AddSwaggerGen cтрокового формата данных для DateOnly

This commit is contained in:
Olga Nemt 2023-03-30 16:41:06 +05:00
commit f17cea0f7a

View File

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