Use DateTime.Now instead of DateTime.UtcNow

This commit is contained in:
2025-11-24 15:05:43 +09:00
parent 3ccccd2467
commit be3d369575
13 changed files with 24 additions and 24 deletions

View File

@ -38,14 +38,14 @@ namespace Hcs.WebApp.BackgroundServices.ResultGetters.HouseManagement
contracts.Add(new SupplyContract()
{
HcsId = Guid.Parse(entry.ContractGUID),
SyncedAt = DateTime.UtcNow,
SyncedAt = DateTime.Now,
LastSyncOperationId = operation.Id
});
}
await supplyContractService.UpsertSupplyContracts(context, contracts);
endedAt = DateTime.UtcNow;
endedAt = DateTime.Now;
await headquartersService.SetOperationEndedAsync(context, operation.Id, endedAt);
if (!string.IsNullOrEmpty(result.NextResultsGuid))