26 lines
585 B
C#
26 lines
585 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KlassenBIB
|
|
{
|
|
|
|
/// <summary>
|
|
/// Abstrakte Klasse zur Darstellung einer Partielle Reparatur
|
|
/// </summary>
|
|
public abstract class Reparatur : Sanieren
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="projektpfad"></param>
|
|
/// <returns></returns>
|
|
public override string CheckVerzeichnisse(string projektpfad)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|