KlassenDLL im Main integriert
This commit is contained in:
40
SanSystem/KlassenBIB/Sanierung/Reparatur.cs
Normal file
40
SanSystem/KlassenBIB/Sanierung/Reparatur.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
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 : AbstractSanieren
|
||||
{
|
||||
decimal positionImKanal;
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public decimal PositionImKanal
|
||||
{
|
||||
get
|
||||
{
|
||||
return positionImKanal;
|
||||
}
|
||||
set
|
||||
{
|
||||
positionImKanal = value;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="projektpfad"></param>
|
||||
/// <returns></returns>
|
||||
public override string CheckVerzeichnisse(string projektpfad)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user