private void dgvParametros_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            frmParametrosForm frm = new frmParametrosForm();
            var row = dgvParametros.CurrentRow;

            frm.isEditing        = true;
            frm.Id               = (int)row.Cells["Id"].Value;
            frm.AnoMesProceso    = DateTime.Parse(row.Cells["Ano_Mes_Proceso"].Value.ToString());
            frm.Deprec_Calculada = bool.Parse(row.Cells["Deprec_Calculada"].Value.ToString());
            frm.RNC_Empresa      = row.Cells["RNC_Empresa"].Value.ToString();
            frm.Met_Depreciacion = row.Cells["Met_Drepeciacion"].Value.ToString();

            frm.ShowDialog();
        }
        private void btnAgregar_Click(object sender, EventArgs e)
        {
            frmParametrosForm frm = new frmParametrosForm();

            frm.ShowDialog();
        }