Umstrukturierungen

This commit is contained in:
HuskyTeufel
2019-10-10 09:20:37 +02:00
parent 30f0956d21
commit a049c64ea4
39 changed files with 201 additions and 416 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KlassenBIB
{
public sealed class VorOrtImprägnier : AbstractImprägnier
{
public double WalzenAbstandSoll
{
get
{
return 2*Wanddicke + 1.0;
}
}
public double WalzenAbstandIst { get; set; }
public bool VakuumKorrekt { get; set; }
public bool EinbautempKorrekt { get; set; }
}
}