private bool EditConnection(IWin32Window parentWindow)
        {
            PowerBIConnectionManagerUIForm frm = new PowerBIConnectionManagerUIForm(connectionManager, serviceProvider);

            var result = frm.ShowDialog();

            if (result == DialogResult.OK)
                return true;

            return false;
        }
Ejemplo n.º 2
0
        private bool EditConnection(IWin32Window parentWindow)
        {
            PowerBIConnectionManagerUIForm frm = new PowerBIConnectionManagerUIForm(connectionManager, serviceProvider);

            var result = frm.ShowDialog();

            if (result == DialogResult.OK)
            {
                return(true);
            }

            return(false);
        }