Projekte können erstellt und geladen werden

This commit is contained in:
2023-03-30 20:56:21 +02:00
parent e5214e44c3
commit 70bba66df3
32 changed files with 1050 additions and 93 deletions

View File

@@ -8,11 +8,11 @@ namespace Shared.Domain
{
public class Auftraggeber : DBObject
{
public string Name { get; set; }
public string Strasse { get; set; }
public string Ort { get; set; }
public string Postleitzahl { get; set; }
public string Ansprechpartner { get; set; }
public string Telefonnummer { get; set; }
public string? Name { get; set; }
public string? Strasse { get; set; }
public string? Ort { get; set; }
public string? Postleitzahl { get; set; }
public string? Ansprechpartner { get; set; }
public string? Telefonnummer { get; set; }
}
}

View File

@@ -8,11 +8,11 @@ namespace Shared.Domain
{
public class Kanal : DBObject
{
public string Objektbezeichnung { get; set; }
public string? Objektbezeichnung { get; set; }
public Schacht? StartSchacht { get; set; }
public Schacht? EndSchacht { get; set; }
public int DN { get; set; }
public string Material { get; set; }
public string? Material { get; set; }
public decimal Haltungslaenge { get; set; }
public EEntwaeserung Entwaesserung { get; set; }

View File

@@ -9,10 +9,10 @@ namespace Shared.Domain
{
public class Projekt : DBObject
{
public string Projektname { get; set; }
public string Erstelldatum { get; set; }
public string Strasse { get;set; }
public string Ort { get; set; }
public string? Projektname { get; set; }
public string? Erstelldatum { get; set; }
public string? Strasse { get;set; }
public string? Ort { get; set; }
public Auftraggeber Auftraggeber { get; set; }
public EExportType ExportType { get; set; }
public EKodierungssystem Kodierungssystem { get; set; }

View File

@@ -9,7 +9,7 @@ namespace Shared.Domain
{
public class Schacht : DBObject
{
public string Objektbezeichnung { get; set; }
public string? Objektbezeichnung { get; set; }
[Column(TypeName = "decimal(18,4)")]
public decimal RechtsWert { get; set; }