Guids werden hinzugefügt

This commit is contained in:
Husky
2019-05-31 23:27:29 +02:00
parent 7656f0d7b7
commit 74c0ea596f
9 changed files with 58 additions and 10 deletions

View File

@@ -81,6 +81,10 @@ namespace KlassenBIB
/// <summary>
///
/// </summary>
public Guid Guid { get; set; }
/// <summary>
///
/// </summary>
public Inspektionsobjekt()
{
Schadenskuerzeln = new InspektionskuerzelnCollection();

View File

@@ -11,7 +11,7 @@ namespace KlassenBIB
/// </summary>
public abstract class Sanieren : Sanierung
{
Guid guid;
DateTime datum = new DateTime();
bool fertig = false;
string verzeichnispfad;
@@ -22,10 +22,6 @@ namespace KlassenBIB
/// <summary>
///
/// </summary>
public Guid Guid { get => guid; set => guid = value; }
/// <summary>
///
/// </summary>
public DateTime Datum { get => datum; set => datum = value; }
/// <summary>
///

View File

@@ -18,7 +18,7 @@ namespace KlassenBIB
[Browsable(false)]
public abstract class Sanierung : INotifyPropertyChanged
{
//Guid guid;
Guid guid;
double tempAusen;
double tempKanal;
string wetter;
@@ -53,7 +53,10 @@ namespace KlassenBIB
/// <param name="projektpfad"></param>
/// <returns></returns>
public abstract string CheckVerzeichnisse(string projektpfad);
//public Guid Guid { get => guid; set => guid = value; }
/// <summary>
///
/// </summary>
public Guid Guid { get => guid; set => guid = value; }
/// <summary>
///
/// </summary>