protected void Button_BUSCADOR_DIAGNOSTICO_Click(object sender, EventArgs e)
 {
     diagnostico _diagnostico = new diagnostico(Session["idEmpresa"].ToString(), Session["USU_LOG"].ToString());
     DataTable _dataTable = _diagnostico.ObtenerPorNombre(this.TextBox_BUSCADOR_DIAGNOSTICO.Text);
     Cargar(this.DropDownList_DSC_DIAG, _dataTable, "ID_DIAGNOSTICO");
     _dataTable.Dispose();
 }