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 { /// /// /// /// /// public override string CheckVerzeichnisse(string projektpfad) { throw new NotImplementedException(); } } }