Use DateTime.Now instead of DateTime.UtcNow
This commit is contained in:
@ -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))
|
||||
|
||||
Reference in New Issue
Block a user