forked from ddrilling/AsbCloudServer
Смена типа дат для WellDto
This commit is contained in:
parent
827e1c6694
commit
86674ba263
@ -67,7 +67,7 @@ namespace AsbCloudApp.Data
|
||||
/// <summary>
|
||||
/// Дата/время первой операции
|
||||
/// </summary>
|
||||
public DateTime? StartDate { get; set; }
|
||||
public DateTimeOffset? StartDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Дата/время кода приходили данные последний раз
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user