Code cleanup

This commit is contained in:
2023-04-12 22:29:49 +02:00
parent b100eca490
commit 7a036b3404
22 changed files with 184 additions and 183 deletions

View File

@@ -8,11 +8,11 @@ namespace SewerStammGen.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; } = String.Empty;
public string Strasse { get; set; } = String.Empty;
public string Ort { get; set; } = String.Empty;
public string Postleitzahl { get; set; } = String.Empty;
public string Ansprechpartner { get; set; } = String.Empty;
public string Telefonnummer { get; set; } = String.Empty;
}
}