Смена типа дат для WellDto

This commit is contained in:
Olga Nemt 2024-03-22 17:22:10 +05:00
parent 827e1c6694
commit 86674ba263
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ namespace AsbCloudApp.Data
/// <summary>
/// Дата/время первой операции
/// </summary>
public DateTime? StartDate { get; set; }
public DateTimeOffset? StartDate { get; set; }
/// <summary>
/// Дата/время кода приходили данные последний раз

View File

@ -273,7 +273,7 @@ namespace AsbCloudInfrastructure.Services
if (entity.Timezone is null)
dto.Timezone = GetTimezone(entity.Id);
dto.StartDate = wellOperationRepository.FirstOperationDate(entity.Id)?.ToRemoteDateTime(dto.Timezone.Hours);
dto.StartDate = wellOperationRepository.FirstOperationDate(entity.Id)?.ToOffset(TimeSpan.FromHours(dto.Timezone.Hours));
dto.WellType = entity.WellType.Caption;
dto.Cluster = entity.Cluster.Caption;
dto.Deposit = entity.Cluster.Deposit.Caption;