Update 07082021
This commit is contained in:
23
Models/Anrede.cs
Normal file
23
Models/Anrede.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BWPMModels
|
||||
{
|
||||
public class Anrede
|
||||
{
|
||||
public int ID { get; set; } = 0;
|
||||
|
||||
public string bezeichnung { get; set; } = "";
|
||||
|
||||
public DateTime? erstellt_am { get; set; } = DateTime.Now;
|
||||
|
||||
public DateTime? mutiert_am { get; set; } = DateTime.Now;
|
||||
|
||||
public string mutierer { get; set; } = "";
|
||||
|
||||
public bool? aktiv { get; set; } = true;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
32
Models/Ansprechpartner.cs
Normal file
32
Models/Ansprechpartner.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BWPMModels
|
||||
{
|
||||
public class Ansprechpartner
|
||||
{
|
||||
public int ID { get; set; } = 0;
|
||||
|
||||
public int? FirmaID { get; set; } = 0;
|
||||
|
||||
public string name { get; set; } = "";
|
||||
|
||||
public string vorname { get; set; } = "";
|
||||
|
||||
public string anrede { get; set; } = "";
|
||||
|
||||
public string tel { get; set; } = "";
|
||||
|
||||
public string email { get; set; } = "";
|
||||
|
||||
public bool? aktiv { get; set; } = true;
|
||||
|
||||
public DateTime? erstellt_am { get; set; } = DateTime.Now;
|
||||
|
||||
public DateTime? mutiert_am { get; set; } = DateTime.Now;
|
||||
|
||||
public string mutierer { get; set; } = "";
|
||||
|
||||
}
|
||||
}
|
||||
68
Models/Firma.cs
Normal file
68
Models/Firma.cs
Normal file
@@ -0,0 +1,68 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Text;
|
||||
|
||||
namespace BWPMModels
|
||||
{
|
||||
public class Firma
|
||||
{
|
||||
public int ID { get; set; } = 0;
|
||||
|
||||
[Required(ErrorMessage = "Feld darf nicht leer sein.")]
|
||||
public string nameZ1 { get; set; } = "";
|
||||
|
||||
public string nameZ2 { get; set; } = "";
|
||||
|
||||
public string strasse { get; set; } = "";
|
||||
|
||||
[Required(ErrorMessage = "Feld darf nicht leer sein.")]
|
||||
public string plz { get; set; } = "";
|
||||
[Required(ErrorMessage = "Feld darf nicht leer sein.")]
|
||||
public string ort { get; set; } = "";
|
||||
|
||||
[Required(ErrorMessage = "Feld darf nicht leer sein.")]
|
||||
[Phone(ErrorMessage = "Dies ist keine gültige Telefon-Nummer")]
|
||||
public string tel { get; set; } = "";
|
||||
|
||||
public string web { get; set; } = "";
|
||||
[Required(ErrorMessage = "Feld darf nicht leer sein.")]
|
||||
[EmailAddress(ErrorMessage ="Dies ist keine gültige EMail-Adresse")]
|
||||
public string mail { get; set; } = "";
|
||||
|
||||
public string bemerkung { get; set; } = "";
|
||||
|
||||
public int? anrede { get; set; } = 1;
|
||||
|
||||
public string briefanrede { get; set; } = "";
|
||||
|
||||
public string ausbildungsstandort { get; set; } = "";
|
||||
|
||||
public string ausbildungsbemerkung { get; set; } = "";
|
||||
[Required(ErrorMessage = "Feld darf nicht leer sein.")]
|
||||
public string ansprechperson_name { get; set; } = "";
|
||||
[Required(ErrorMessage = "Feld darf nicht leer sein.")]
|
||||
public string ansprechperon_vorname { get; set; } = "";
|
||||
[Required(ErrorMessage = "Feld darf nicht leer sein.")]
|
||||
[Phone(ErrorMessage ="Dies ist keine gültige Telefon-Nummer")]
|
||||
public string handy { get; set; } = "";
|
||||
|
||||
public bool? aktuell { get; set; } = true;
|
||||
|
||||
public int? zugehoerigkeit { get; set; } = 0;
|
||||
|
||||
public bool? aktiv { get; set; } = true;
|
||||
|
||||
public DateTime? erstellt_am { get; set; } = DateTime.Now;
|
||||
|
||||
public DateTime? mutiert_am { get; set; } = DateTime.Now;
|
||||
|
||||
public string mutierer { get; set; } = "";
|
||||
|
||||
public int? mandantnr { get; set; } = 0;
|
||||
|
||||
public string userid { get; set; } = "";
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
40
Models/Firmaberuf.cs
Normal file
40
Models/Firmaberuf.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BWPMModels
|
||||
{
|
||||
public class Firmaberuf
|
||||
{
|
||||
public int ID { get; set; } = 0;
|
||||
|
||||
public int? firmaID { get; set; } = 0;
|
||||
|
||||
public int? berufID { get; set; } = 0;
|
||||
|
||||
public int? ansprechpartnerID { get; set; } = 0;
|
||||
|
||||
public int? zeitID { get; set; } = 0;
|
||||
|
||||
public int? klassetypID { get; set; } = 0;
|
||||
|
||||
public int? anzahl { get; set; } = 0;
|
||||
|
||||
public string bemerkung { get; set; } = "";
|
||||
|
||||
public string schuelerbemerkung { get; set; } = "";
|
||||
|
||||
public string standortbemerkung { get; set; } = "";
|
||||
|
||||
public int? minzuteilung { get; set; } = 0;
|
||||
|
||||
public bool? aktiv { get; set; } = true;
|
||||
|
||||
public DateTime? erstellt_am { get; set; } = DateTime.Now;
|
||||
|
||||
public DateTime? mutiert_am { get; set; } = DateTime.Now;
|
||||
|
||||
public string mutierer { get; set; } = "";
|
||||
|
||||
}
|
||||
}
|
||||
31
Models/Klasse.cs
Normal file
31
Models/Klasse.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BWPMModels
|
||||
{
|
||||
public class Klasse
|
||||
{
|
||||
public int ID { get; set; } = 0;
|
||||
|
||||
public int? schulhausID { get; set; } = 0;
|
||||
|
||||
public string bezeichnung { get; set; } = "";
|
||||
|
||||
public bool? aktiv { get; set; } = true;
|
||||
|
||||
public DateTime? erstellt_am { get; set; } = DateTime.Now;
|
||||
|
||||
public DateTime? mutiert_am { get; set; } = DateTime.Now;
|
||||
|
||||
public string mutierer { get; set; } = "";
|
||||
|
||||
public int? klassengroesse { get; set; } = 0;
|
||||
|
||||
public int? lehrerID { get; set; } = 0;
|
||||
|
||||
public int? mandantnr { get; set; } = 0;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
25
Models/Klassentyp.cs
Normal file
25
Models/Klassentyp.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BWPMModels
|
||||
{
|
||||
public class Klassentyp
|
||||
{
|
||||
public int ID { get; set; } = 1;
|
||||
|
||||
public string bezeichnung { get; set; } = "";
|
||||
|
||||
public bool? aktiv { get; set; } = true;
|
||||
|
||||
public DateTime? erstellt_am { get; set; } = DateTime.Now;
|
||||
|
||||
public DateTime? mutiert_am { get; set; } = DateTime.Now;
|
||||
|
||||
public string mutierer { get; set; } = "";
|
||||
|
||||
public int? mandantID { get; set; } = 0;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
44
Models/Lehrer.cs
Normal file
44
Models/Lehrer.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Text;
|
||||
|
||||
namespace BWPMModels
|
||||
{ public class Lehrer
|
||||
{
|
||||
public int ID { get; set; } = 0;
|
||||
|
||||
public int anredeID { get; set; } =0;
|
||||
[Required(ErrorMessage = "Feld darf nicht leer sein.")]
|
||||
public string name { get; set; } = "";
|
||||
[Required(ErrorMessage = "Feld darf nicht leer sein.")]
|
||||
public string vorname { get; set; } = "";
|
||||
|
||||
[Required(ErrorMessage = "Feld darf nicht leer sein.")]
|
||||
[Phone(ErrorMessage = "Dies ist keine gültige Telefon-Nummer")]
|
||||
public string tel { get; set; } = "";
|
||||
|
||||
[Required(ErrorMessage = "Feld darf nicht leer sein.")]
|
||||
[Phone(ErrorMessage = "Dies ist keine gültige Telefon-Nummer")]
|
||||
public string handy { get; set; } = "";
|
||||
|
||||
public string email { get; set; } = "";
|
||||
|
||||
public int? schulhausID { get; set; } = 0;
|
||||
|
||||
public string briefanrede { get; set; } = "";
|
||||
|
||||
public int? mandantnr { get; set; } = 0;
|
||||
|
||||
public bool? aktiv { get; set; } = true;
|
||||
|
||||
public DateTime? erstellt_am { get; set; } = DateTime.Now;
|
||||
|
||||
public DateTime? mutiert_am { get; set; } = DateTime.Now;
|
||||
|
||||
public string mutierer { get; set; } = "";
|
||||
|
||||
public string userid { get; set; } = "";
|
||||
|
||||
}
|
||||
}
|
||||
11
Models/MyScriptGenerator.cs
Normal file
11
Models/MyScriptGenerator.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BWPMModels
|
||||
{
|
||||
public class MyScriptGenerator
|
||||
{
|
||||
public string script { get; set; }
|
||||
}
|
||||
}
|
||||
26
Models/Optionen.cs
Normal file
26
Models/Optionen.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BWPMModels
|
||||
{
|
||||
public class Optionen
|
||||
{
|
||||
public int ID { get; set; } = 0;
|
||||
|
||||
public int mandantnr { get; set; } = 0;
|
||||
|
||||
public string Bezeichnung { get; set; } = "";
|
||||
|
||||
public string inhalt { get; set; } = "";
|
||||
|
||||
public DateTime? erstellt_am { get; set; } = DateTime.Now;
|
||||
|
||||
public DateTime? mutiert_am { get; set; } = DateTime.Now;
|
||||
|
||||
public string mutierer { get; set; } = "";
|
||||
|
||||
public bool? aktiv { get; set; } = true;
|
||||
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -14,10 +14,12 @@
|
||||
"outputPath": "E:\\Software-Projekte\\Lehrlingsparcours\\Core\\BWPM\\Models\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
||||
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Steafn Hutter lokal\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||
],
|
||||
@@ -25,6 +27,7 @@
|
||||
"netcoreapp3.1"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\FastReports\\FastReport.Net\\Nugets": {},
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"http://nuget.grapecity.com/nuget": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
@@ -69,7 +72,7 @@
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,12 +5,13 @@
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Steafn Hutter lokal\.nuget\packages\;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\</NuGetPackageFolders>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Steafn Hutter lokal\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.10.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Steafn Hutter lokal\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
is_global = true
|
||||
build_property.RootNamespace = BWPMModels
|
||||
build_property.ProjectDir = e:\Software-Projekte\Lehrlingsparcours\Core\BWPM\Models\
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
1bab01f86a65bd8417319af1a2e7814c091db5fa
|
||||
c6694572788175e89456330a59d70d898a295b82
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
cfaa24b0f3f52228b00494c6929d221b016e116b
|
||||
87a02685b76fdedf33d906d4aabbffa6ad5f82ba
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -5700,6 +5700,7 @@
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\Steafn Hutter lokal\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
|
||||
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {}
|
||||
},
|
||||
"project": {
|
||||
@@ -5712,10 +5713,12 @@
|
||||
"outputPath": "E:\\Software-Projekte\\Lehrlingsparcours\\Core\\BWPM\\Models\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
||||
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Steafn Hutter lokal\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||
],
|
||||
@@ -5723,6 +5726,7 @@
|
||||
"netcoreapp3.1"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\FastReports\\FastReport.Net\\Nugets": {},
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"http://nuget.grapecity.com/nuget": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
@@ -5767,7 +5771,7 @@
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "eak57WUsZKPhtsdtiA0hBr5pwjxbjJ395WyDfdX5GzntnoPYopodgWifRdGh+iYfAsmoaGEL/+geoj2k6p7tgw==",
|
||||
"dgSpecHash": "+g4WfqRf42cAJ15KtFjwJP8c7BfA8Q+L5m3X9zrS3D7HwBUouOvsRnkIjDHOplwGQO+TXUKRle76+X+AUWU3eg==",
|
||||
"success": true,
|
||||
"projectFilePath": "E:\\Software-Projekte\\Lehrlingsparcours\\Core\\BWPM\\Models\\BWPMModels.csproj",
|
||||
"expectedPackageFiles": [
|
||||
|
||||
Reference in New Issue
Block a user