mediatek86/projet/dal/ResponsableAccess.cs

12 lines
304 B
C#

namespace Habilitations.dal
{
public class ResponsableAccess
{
private static readonly string connectionString = "server=localhost;user id=root;password=;database=mediatek;";
public static string GetConnexion()
{
return connectionString;
}
}
}