Mutex hinzugefügt.

Imprägnierprotokoll weitergeführt
This commit is contained in:
HuskyTeufel
2019-09-20 11:02:54 +02:00
parent 9a4335f81a
commit 8d089a7905
7 changed files with 53 additions and 46 deletions

View File

@@ -6,30 +6,24 @@ using System.Threading.Tasks;
namespace KlassenBIB
{
/// <summary>
///
/// </summary>
public abstract class AbstractImprägnier
{
/// <summary>
///
/// </summary>
public string Schlauchnummer { get; set; }
/// <summary>
///
/// </summary>
public DateTime Imprägnierdatum { get; set; }
/// <summary>
///
/// </summary>
public ImprägnierungStrukture ImprägnierungBeginn { get; set; }
public ImprägnierungStrukture ImprägnierungEnde { get; set; }
public string ImprägnierDatum
{
get
{
if (ImprägnierungBeginn == null) return "Nicht definiert";
return ImprägnierungBeginn.Zeitstempel.ToShortDateString();
}
}
public uint DN { get; set; }
/// <summary>
///
/// </summary>
public double Wanddicke { get; set; }
/// <summary>
///
/// </summary>
public double Länge { get; set; }
public double Harzmenge { get; set; }
public string Bediener { get; set; }
}
}