Klassen erweitert

This commit is contained in:
Husky
2020-02-21 09:50:32 +01:00
parent 5798fc6108
commit fc144554a5
18 changed files with 596 additions and 192 deletions

View File

@@ -1,14 +1,17 @@
using System;
using KanSan.Base.Interfaces;
using System;
using System.Collections.Generic;
using System.Text;
namespace KanSan.Base.Models
{
public class Baustelle : DatenbankClass
public class Baustelle : IDatabaseEntry
{
public Kunde Kunde { get; set; }
public string Ort { get; set; }
public string Strasse { get; set; }
public string Projektnummer { get; set; }
public int ID { get; set; }
public Guid GuidNr { get; set; }
public Projekt Projekt { get; set; }
public string OrtTeil { get; set; }
public string BaustelleNummer { get; set; }
public List<Sewer> Kanaele { get; } = new List<Sewer>();
}
}