27 lines
812 B
C#
27 lines
812 B
C#
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";
|
|
} |