Reparaturen zur Schadenskürzeln hinzugefügt

This commit is contained in:
Husky
2018-07-21 12:59:46 +02:00
parent 53fa3789f2
commit acec9fee09
7 changed files with 129 additions and 25 deletions

15
KlassenBIB/Hutprofil.cs Normal file
View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KlassenBIB
{
/// <summary>
/// Zulaufeinbindung
/// </summary>
public class Hutprofil : Reparatur
{
}
}

View File

@@ -59,5 +59,9 @@ namespace KlassenBIB
///
/// </summary>
public string Anmerkung { get; set; }
/// <summary>
///
/// </summary>
public Reparatur Reparatur { get; set; }
}
}

15
KlassenBIB/Kurzliner.cs Normal file
View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KlassenBIB
{
/// <summary>
/// Partielle Reparatur
/// </summary>
public class Kurzliner : Reparatur
{
}
}

15
KlassenBIB/Quicklock.cs Normal file
View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KlassenBIB
{
/// <summary>
/// Quicklock manschette
/// </summary>
public class Quicklock : Reparatur
{
}
}

25
KlassenBIB/Reparatur.cs Normal file
View File

@@ -0,0 +1,25 @@
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();
}
}
}