private async void CapacitacionView_Load(object sender, EventArgs e)
        {
            update_dataGridView();
            showLoading();

            _departamentos = (await _departamentoService.GetAll()).ToList();
            _niveles       = (await _nivelService.GetAll()).ToList();
            _instituciones = (await _institucionService.GetAll()).ToList();

            foreach (var departamento in _departamentos)
            {
                DepartamentoComboBox.Items.Add(departamento);
                DepartamentoComboBox.DisplayMember = "Nombre";
                DepartamentoComboBox.ValueMember   = "Id";
            }
            foreach (var dept in _niveles)
            {
                NivelComboBox.Items.Add(dept);
                NivelComboBox.DisplayMember = "Titulo";
                NivelComboBox.ValueMember   = "Id";
            }
            foreach (var isntitucion in _instituciones)
            {
                IntitucionComboBox.Items.Add(isntitucion);
                IntitucionComboBox.DisplayMember = "NombreInstitucion";
                IntitucionComboBox.ValueMember   = "Id";
            }

            hideLoading();
        }
        private async void ExperienciaLaboralView_Load(object sender, EventArgs e)
        {
            if (CurrentUser.Rol == Rol.Estandar)
            {
                button4.Visible = false;
                button5.Visible = false;
                button3.Visible = false;
                button8.Visible = false;
                button9.Visible = false;
            }

            _instituciones = (await _institucionService.GetAll()).ToList();
            foreach (var isntitucion in _instituciones)
            {
                IntitucionComboBox.Items.Add(isntitucion);
                IntitucionComboBox.DisplayMember = "NombreInstitucion";
                IntitucionComboBox.ValueMember   = "Id";
            }
            update_dataGridView();
        }
 private async void update_dataGridView()
 {
     dataGridView1.AutoGenerateColumns = false;
     dataGridView1.DataSource          = (await _institucionView.GetAll()).ToList();
 }