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

21
Shared/Domain/Projekt.cs Normal file
View File

@@ -0,0 +1,21 @@
using Shared.Enum;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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 EExportType ExportType { get; set; }
public EKodierungssystem Kodierungssystem { get; set; }
public IList<Kanal> Kanaele { get; set; }
public IList<Schacht> Schaechte { get; set;}
}
}