//Control de timer y actualización protected void Timer1_Tick(object sender, EventArgs e) { try { int seconds = int.Parse(lblTimerTime1.Text); if (seconds > 0) { lblTimerTime1.Text = (seconds - 1).ToString(); } else { PROCESAMIENTO_COLA newClient = new PROCESAMIENTO_COLA(); var datos1 = BProcesamientoColas.Actualizar_Cola(1); lblTimerTime1.Text = "120"; } int seconds2 = int.Parse(lblTimerTime2.Text); if (seconds2 > 0) { lblTimerTime2.Text = (seconds2 - 1).ToString(); } else { PROCESAMIENTO_COLA newClient = new PROCESAMIENTO_COLA(); var datos1 = BProcesamientoColas.Actualizar_Cola(2); lblTimerTime2.Text = "180"; } } catch (Exception ex) { throw ex; } }
//Insertar nuevo cliente pendiente de atención protected void NewProces_Click(object sender, EventArgs e) { try { PROCESAMIENTO_COLA newClient = new PROCESAMIENTO_COLA(); var datos1 = BProcesamientoColas.Insert_NewCliente(IdCliente.Text, NomCliente.Text); CargarGridCola1(); CargarGridCola2(); } catch (Exception ex) { throw ex; } }