public static class Program {
public static void Main() {
DAL.DadosConexao.isServ = true;
var con = DAL.DadosConexao.StringConexao;
public static class DadosConexao {
public static string servidor { get; set; }
public static bool isServ { get; set; }
public static string StringConexao {
if (!isServ) servidor = Environment.MachineName.ToString();
return "Data Source=" + servidor +
"Initial Catalog=MINHABASE;" +
"Persist Security Info=True;" +