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; } } }