using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KlassenBIB { /// /// Abstrakte Klasse zur Darstellung einer Partielle Reparatur /// public abstract class Reparatur : Sanieren { decimal positionImKanal; /// /// /// public decimal PositionImKanal { get { return positionImKanal; } set { positionImKanal = value; } } /// /// /// /// /// public override string CheckVerzeichnisse(string projektpfad) { throw new NotImplementedException(); } } }