private void buttonOpen_Click(object sender, EventArgs e)
        {
            textBoxResult.Clear();

            try
            {
                _ui.OpenFile();
            }
            catch
            {
                textBoxResult.Text = "Erro ao carregar arquivo";
                return;
            }
            textBoxResult.Text = "Arquivo carregado com sucesso";
        }
 public virtual void OpenFile()
 {
     implementor.OpenFile();
 }