protected void deleteProc(object sender, EventArgs e)
 {
     var Id = ((LinkButton)sender).CommandArgument;
     var oneConsultapro = new ConsultaProcedimientoDTO();
     oneConsultapro.Id_ConsultaProcedimiento = Convert.ToInt32(Id);
     ConsultaProcedimientoDAO Delete = new ConsultaProcedimientoDAO();
     Delete.Delete(oneConsultapro);
     loadProcedimiento();
 }