34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KlassenBIB
|
|
{
|
|
public abstract class AbstractImprägnier
|
|
{
|
|
public string Schlauchnummer { get; set; }
|
|
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; }
|
|
public double Wanddicke { get; set; }
|
|
public double Länge { get; set; }
|
|
public double Harzmenge { get; set; }
|
|
public string Bediener { get; set; }
|
|
public double HarzTemperatur { get; set; }
|
|
public double Vakuum { get; set; }
|
|
public string HarzTyp { get; set; }
|
|
public double Walzenabstand { get; set; }
|
|
public bool NochVorhanden { get; set; }
|
|
}
|
|
}
|