Preliner auswahl + MassenStatistik berechnung hinzugefügt

This commit is contained in:
Husky
2019-05-31 23:00:36 +02:00
parent 1cae6bbb7a
commit 7656f0d7b7
4 changed files with 51 additions and 38 deletions

View File

@@ -27,6 +27,7 @@ namespace KlassenBIB
double harzbedarf = 1.8;
uint rueckholgeschwindigkeit = 24;
bool geschlosseneEnde = false;
bool preliner = false;
DateTime anfangAushaertung;
DateTime endeAushaertung;
string ort;
@@ -246,5 +247,9 @@ namespace KlassenBIB
///
/// </summary>
public DateTime EndeKalibirierung { get => endeKalibirierung; set => endeKalibirierung = value; }
/// <summary>
/// Preliner
/// </summary>
public bool Preliner { get => preliner; set => preliner = value; }
}
}