13 lines
300 B
C#
13 lines
300 B
C#
|
|
namespace Habilitations.dal
|
|||
|
|
{
|
|||
|
|
public class AbsenceAccess
|
|||
|
|
{
|
|||
|
|
private static readonly string connectionString = "server=localhost;user id=root;password=;database=mediatek;";
|
|||
|
|
|
|||
|
|
public static string GetConnexion()
|
|||
|
|
{
|
|||
|
|
return connectionString;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|