2024-09-02 13:55:13 +02:00
|
|
|
|
namespace Core;
|
2024-08-23 10:42:39 +02:00
|
|
|
|
|
2024-09-02 13:55:13 +02:00
|
|
|
|
public static class Constants
|
2024-08-23 10:42:39 +02:00
|
|
|
|
{
|
2024-09-02 13:55:13 +02:00
|
|
|
|
//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";
|
|
|
|
|
|
2024-08-23 10:42:39 +02:00
|
|
|
|
public const char Separator = ';';
|
2024-09-02 13:55:13 +02:00
|
|
|
|
|
2024-08-23 10:42:39 +02:00
|
|
|
|
public const string FemaleAttributeIdentifier = "Frau";
|
2024-09-02 13:55:13 +02:00
|
|
|
|
|
2024-08-23 10:42:39 +02:00
|
|
|
|
public const string MaleAttributeIdentifier = "Herr";
|
2024-09-02 13:55:13 +02:00
|
|
|
|
|
2024-08-30 08:09:49 +02:00
|
|
|
|
public const string DiverseAttributeIdentifier = "Divers";
|
2024-09-02 13:55:13 +02:00
|
|
|
|
|
2024-08-23 10:42:39 +02:00
|
|
|
|
public const string AddressAttributeIdentifier = "Adresse";
|
2024-09-02 13:55:13 +02:00
|
|
|
|
|
2024-08-23 10:42:39 +02:00
|
|
|
|
public const string EmailAttributeIdentifier = "E-Mail";
|
2024-09-02 13:55:13 +02:00
|
|
|
|
|
2024-08-23 10:42:39 +02:00
|
|
|
|
public const string PhoneNumberAttributeIdentifier = "Telefon";
|
|
|
|
|
}
|