WPF hinzugefügt

This commit is contained in:
Husky
2021-02-26 18:31:57 +01:00
parent 6761b17f4d
commit 746353e54e
34 changed files with 1261 additions and 37 deletions

View File

@@ -4,11 +4,11 @@ using System.Linq;
namespace Models {
public class Bauvorhaben {
Auftraggeber auftraggeber;
public Auftraggeber Auftraggeber {get => auftraggeber; set => auftraggeber = value;}
public string Standort = string.Empty;
public string Strasse = string.Empty;
public string Ort = string.Empty;
public IEnumerable<Inspektionsobjekt> Prüfobjekte = new List<Inspektionsobjekt>();
public Auftraggeber Auftraggeber { get; set; }
public int Id { get; set; }
public string Standort { get; set; }
public string Strasse { get; set; }
public string Ort { get; set; }
public IEnumerable<Inspektionsobjekt> Prüfobjekte { get; set; }
}
}