private void Salva_log()
        {
            LogConexao logconexao = new LogConexao();

            logconexao.port_conection = port_Com;
            logconexao.log_acao       = "Conexao";
            logconexao.data_log       = "current_date";
            logconexao.hora_log       = "current_time";

            bool ret = repo.InsertLogConexao(logconexao);

            //mod.sql = "INSERT INTO tbl_log_conexao(port_conection,log_acao,data_log,hora_log) VALUES ('" + port_Com + "','Conexao',current_date,current_time)";
        }
 internal bool InsertLogConexao(LogConexao logconexao)
 {
     return(_CondoDatabase.InsertLogConexao(logconexao));
 }
 internal bool InsertLogConexao(LogConexao logconexao)
 {
     throw new NotImplementedException();
 }