Fix DrillFlowChartService.UpdateAsync() utc time

This commit is contained in:
Фролов 2022-01-21 17:32:10 +05:00
parent 8a3bcf311f
commit 8633616481

View File

@ -72,7 +72,7 @@ namespace AsbCloudInfrastructure.Services
CancellationToken token = default)
{
dto.IdWell = idWell;
dto.LastUpdate = DateTime.Now;
dto.LastUpdate = DateTime.UtcNow;
var result = await base.UpdateAsync(idDto, dto, token).ConfigureAwait(false);
return result;