Code cleanup durchgeführt

This commit is contained in:
HuskyTeufel
2020-07-14 14:19:55 +02:00
parent 004bc22428
commit daf44bae33
5 changed files with 3 additions and 95 deletions

View File

@@ -1,28 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KlassenBIB
{
public abstract class AbstractSanieren : Sanierung
{
DateTime datum = new DateTime();
bool fertig = false;
string verzeichnispfad;
/// <summary>
/// Dient zum Überschreiben
/// </summary>
DateTime offset;
#region getSeters
public string Besatzung { get; set; }
public DateTime Datum { get => datum; set => datum = value; }
public bool Fertig { get => fertig; set => fertig = value; }
public string Verzeichnispfad { get => verzeichnispfad; protected set => verzeichnispfad = value; }
public DateTime Offset { get => offset; set => offset = value; }
#endregion
}
}