KlassenBIB erweitert
This commit is contained in:
32
KlassenBIB/InlinerSanierung.cs
Normal file
32
KlassenBIB/InlinerSanierung.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace KlassenBIB
|
||||
{
|
||||
public sealed class InlinerSanierung : Sanierung
|
||||
{
|
||||
decimal kalibrierUnterdruck = -0.5m;
|
||||
decimal kalibierWalzenAbstand = 0.9m;
|
||||
decimal harzKalibrierTemperatur;
|
||||
DateTime datumKalibrierung;
|
||||
string harzChargenummer;
|
||||
string linerChargenummer;
|
||||
decimal harzbedarf = 1.8m;
|
||||
uint rueckholgeschwindigkeit = 24;
|
||||
|
||||
/// <summary>
|
||||
/// Gibt den kompletten Harzbedarf auf die Haltungslänge bezogen zurück
|
||||
/// </summary>
|
||||
public decimal GesamtHarzBedarf
|
||||
{
|
||||
get
|
||||
{
|
||||
return InspektionsObjekt.Haltungslaenge * harzbedarf;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user