Reparaturen zur Schadenskürzeln hinzugefügt
This commit is contained in:
15
KlassenBIB/Hutprofil.cs
Normal file
15
KlassenBIB/Hutprofil.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -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
15
KlassenBIB/Kurzliner.cs
Normal 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
15
KlassenBIB/Quicklock.cs
Normal 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
25
KlassenBIB/Reparatur.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user