From 863361648156cba6fcd375b85eaa1d3e15ad8c8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A4=D1=80=D0=BE=D0=BB=D0=BE=D0=B2?= Date: Fri, 21 Jan 2022 17:32:10 +0500 Subject: [PATCH] Fix DrillFlowChartService.UpdateAsync() utc time --- AsbCloudInfrastructure/Services/DrillFlowChartService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AsbCloudInfrastructure/Services/DrillFlowChartService.cs b/AsbCloudInfrastructure/Services/DrillFlowChartService.cs index 365942f9..046a46bf 100644 --- a/AsbCloudInfrastructure/Services/DrillFlowChartService.cs +++ b/AsbCloudInfrastructure/Services/DrillFlowChartService.cs @@ -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;