diff --git a/AsbCloudApp/Data/DailyReport/SignDto.cs b/AsbCloudApp/Data/DailyReport/SignDto.cs
index 3c75bf33..fe0a6e67 100644
--- a/AsbCloudApp/Data/DailyReport/SignDto.cs
+++ b/AsbCloudApp/Data/DailyReport/SignDto.cs
@@ -8,12 +8,12 @@
///
/// ФИО Мастера буровой
///
- public string DrillingMaster { get; set; }
+ public string DrillingMaster { get; set; } = null!;
///
/// ФИО супервайзера
///
- public string Supervisor { get; set; }
+ public string Supervisor { get; set; } = null!;
}
}
diff --git a/AsbCloudApp/Data/DailyReport/TimeBalanceDto.cs b/AsbCloudApp/Data/DailyReport/TimeBalanceDto.cs
index 40634148..061f2ab6 100644
--- a/AsbCloudApp/Data/DailyReport/TimeBalanceDto.cs
+++ b/AsbCloudApp/Data/DailyReport/TimeBalanceDto.cs
@@ -8,112 +8,112 @@
///
/// Бурение
///
- public string Drilling { get; set; }
+ public string Drilling { get; set; } = string.Empty;
///
/// Промывка
///
- public string Flushing { get; set; }
+ public string Flushing { get; set; } = string.Empty;
- ///
- /// Наращивание
- ///
- public string Building { get; set; }
+ ///
+ /// Наращивание
+ ///
+ public string Building { get; set; } = string.Empty;
- ///
- /// Проработка
- ///
- public string Elaboration { get; set; }
+ ///
+ /// Проработка
+ ///
+ public string Elaboration { get; set; } = string.Empty;
- ///
- /// Расширка
- ///
- public string Extension { get; set; }
+ ///
+ /// Расширка
+ ///
+ public string Extension { get; set; } = string.Empty;
- ///
- /// Ремонт
- ///
- public string Repair { get; set; }
+ ///
+ /// Ремонт
+ ///
+ public string Repair { get; set; } = string.Empty;
- ///
- /// КНБК
- ///
- public string Knbk { get; set; }
+ ///
+ /// КНБК
+ ///
+ public string Knbk { get; set; } = string.Empty;
- ///
- /// СПО
- ///
- public string Spo { get; set; }
+ ///
+ /// СПО
+ ///
+ public string Spo { get; set; } = string.Empty;
- ///
- /// ПЗР
- ///
- public string Pzr { get; set; }
+ ///
+ /// ПЗР
+ ///
+ public string Pzr { get; set; } = string.Empty;
- ///
- /// ПВО
- ///
- public string Pvo { get; set; }
+ ///
+ /// ПВО
+ ///
+ public string Pvo { get; set; } = string.Empty;
- ///
- /// ПГР
- ///
- public string Pgr { get; set; }
+ ///
+ /// ПГР
+ ///
+ public string Pgr { get; set; } = string.Empty;
- ///
- /// ГИС
- ///
- public string Gis { get; set; }
+ ///
+ /// ГИС
+ ///
+ public string Gis { get; set; } = string.Empty;
- ///
- /// ОЗЦ
- ///
- public string Ozc { get; set; }
+ ///
+ /// ОЗЦ
+ ///
+ public string Ozc { get; set; } = string.Empty;
- ///
- /// Тех. работы
- ///
- public string EngineeringWorks { get; set; }
+ ///
+ /// Тех. работы
+ ///
+ public string EngineeringWorks { get; set; } = string.Empty;
- ///
- /// Снятие замера
- ///
- public string TakingMeasure { get; set; }
+ ///
+ /// Снятие замера
+ ///
+ public string TakingMeasure { get; set; } = string.Empty;
- ///
- /// Цементирование
- ///
- public string Cementing { get; set; }
+ ///
+ /// Цементирование
+ ///
+ public string Cementing { get; set; } = string.Empty;
- ///
- /// Простой
- ///
- public string Simple { get; set; }
+ ///
+ /// Простой
+ ///
+ public string Simple { get; set; } = string.Empty;
- ///
- /// НПВ
- ///
- public string Npv { get; set; }
+ ///
+ /// НПВ
+ ///
+ public string Npv { get; set; } = string.Empty;
- ///
- /// Проработка перед наращиванием
- ///
- public string ElaborationBeforeBuilding { get; set; }
+ ///
+ /// Проработка перед наращиванием
+ ///
+ public string ElaborationBeforeBuilding { get; set; } = string.Empty;
- ///
- /// Шаблонировка перед наращиванием
- ///
- public string TemplatingBeforeBuilding { get; set; }
+ ///
+ /// Шаблонировка перед наращиванием
+ ///
+ public string TemplatingBeforeBuilding { get; set; } = string.Empty;
- ///
- /// Промывка перед наращиванием
- ///
- public string FlushingBeforeBuilding { get; set; }
+ ///
+ /// Промывка перед наращиванием
+ ///
+ public string FlushingBeforeBuilding { get; set; } = string.Empty;
- ///
- /// Статический замер телесистемы
- ///
- public string StaticSurveying { get; set; }
- }
+ ///
+ /// Статический замер телесистемы
+ ///
+ public string StaticSurveying { get; set; } = string.Empty;
+ }
}