Fertigstellung - Testing fehlt noch
This commit is contained in:
27
Projekt_Calcan_Conze/Core/Constants.cs
Normal file
27
Projekt_Calcan_Conze/Core/Constants.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
namespace Core;
|
||||
|
||||
public static class Constants
|
||||
{
|
||||
//set the correct values for your server, user, password and database name
|
||||
public const string ConnectionString = "server=localhost;uid=root;pwd=root;database=import_export";
|
||||
|
||||
public const string DateOfBirthFormat = "dd.MM.yyyy";
|
||||
|
||||
public const string DateFormat = "yyyy-MM-dd";
|
||||
|
||||
public const string MoneyFormat = "F3";
|
||||
|
||||
public const char Separator = ';';
|
||||
|
||||
public const string FemaleAttributeIdentifier = "Frau";
|
||||
|
||||
public const string MaleAttributeIdentifier = "Herr";
|
||||
|
||||
public const string DiverseAttributeIdentifier = "Divers";
|
||||
|
||||
public const string AddressAttributeIdentifier = "Adresse";
|
||||
|
||||
public const string EmailAttributeIdentifier = "E-Mail";
|
||||
|
||||
public const string PhoneNumberAttributeIdentifier = "Telefon";
|
||||
}
|
9
Projekt_Calcan_Conze/Core/Core.csproj
Normal file
9
Projekt_Calcan_Conze/Core/Core.csproj
Normal file
@@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
Reference in New Issue
Block a user