Archetektur angefangen

This commit is contained in:
HuskyTeufel
2021-01-31 22:15:43 +01:00
parent 9f8e167ce3
commit 7a733b92d2
44 changed files with 564 additions and 67 deletions

View File

@@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AssemblyName>KanSan.CrossCutting.DataClasses</AssemblyName>
</PropertyGroup>
</Project>

18
DataClasses/Kunde.cs Normal file
View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace KanSan.CrossCutting.DataClasses
{
public class Kunde
{
public int ID { get; set; }
public Guid GuidNr { get; set; }
public string Vorname { get; set; }
public string Nachname { get; set; }
public string Strasse { get; set; }
public string PLZ { get; set; }
public string Ort { get; set; }
//public List<Projekt> Baustellen { get; } = new List<Projekt>();
}
}