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