Entityframework hinzugefügt

This commit is contained in:
2023-03-28 09:20:45 +02:00
parent 5b2ed72fe3
commit a1f5b8437c
18 changed files with 910 additions and 8 deletions

View File

@@ -7,9 +7,8 @@ using System.Threading.Tasks;
namespace Shared.Domain
{
public class Schacht
public class Schacht : DBObject
{
public int Id { get; set; }
public string Objektbezeichnung { get; set; }
[Column(TypeName = "decimal(18,4)")]
@@ -23,5 +22,13 @@ namespace Shared.Domain
[Column(TypeName = "decimal(18,4)")]
public decimal DeckelHoehe { get; set; }
public EEntwaeserung Entwaesserung { get; set; }
}
public enum EEntwaeserung
{
Regenwasser,
Schmutzwasser,
Mischwasser
}
}