Änderung der Linergrundlagen angefangen

This commit is contained in:
Husky
2019-09-06 17:20:40 +02:00
parent 7f4db67209
commit 9a4335f81a
4 changed files with 98 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KlassenBIB
{
/// <summary>
///
/// </summary>
public sealed class VorOrtImprägnier : AbstractImprägnier
{
/// <summary>
/// Gibt den Soll Walzenabstand zurück
/// </summary>
public double WalzenAbstandSoll
{
get
{
return 2*Wanddicke + 1.0;
}
}
/// <summary>
///
/// </summary>
public double WalzenAbstandIst { get; set; }
/// <summary>
///
/// </summary>
public bool VakuumKorrekt { get; set; }
/// <summary>
///
/// </summary>
public bool EinbautempKorrekt { get; set; }
}
}