From 57b38468405137af7dd80bb8c6a1eace86aae21d Mon Sep 17 00:00:00 2001 From: HuskyTeufel Date: Tue, 28 Jul 2020 11:05:08 +0200 Subject: [PATCH] Linerchargen angefangen --- KlassenBIB/KlassenBIB.csproj | 1 + KlassenBIB/LinerChargen.cs | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 KlassenBIB/LinerChargen.cs diff --git a/KlassenBIB/KlassenBIB.csproj b/KlassenBIB/KlassenBIB.csproj index 626a86a..16fc2bd 100644 --- a/KlassenBIB/KlassenBIB.csproj +++ b/KlassenBIB/KlassenBIB.csproj @@ -47,6 +47,7 @@ + diff --git a/KlassenBIB/LinerChargen.cs b/KlassenBIB/LinerChargen.cs new file mode 100644 index 0000000..497d593 --- /dev/null +++ b/KlassenBIB/LinerChargen.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace KlassenBIB +{ + public static class LinerChargen + { + public static void GenLinerChargenOverview(List ProjektListe) + { + + foreach(Projekt projekt in ProjektListe) + { + + } + } + } +}