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