protected void EliminarButton_Click(object sender, EventArgs e) { Motores motor = new Motores(); ObtenerValores(motor); if (MotorIdTextBox.Text.Length == 0) { Validaciones.ShowToastr(this, "Advertencia", "Debe insertar un Id", "warning"); } else { if (motor.Buscar(motor.MotorId)) { if (motor.Eliminar()) { Validaciones.ShowToastr(this, "Exito", "Eliminado correctamente!", "success"); Limpiar(); } else { Validaciones.ShowToastr(this, "Error", "Error al eliminar", "error"); } } else { Validaciones.ShowToastr(this, "Advertencia", "Id no encontrado", "warning"); Limpiar(); } } }
protected void EliminarBtn_Click(object sender, EventArgs e) { Motores motor = new Motores(); Utilerias utileria = new Utilerias(); bool suiche = false; motor.Buscar(utileria.ConvertirValor(BuscarIdTextBox.Text)); if (suiche) { if (motor.Eliminar()) { Utilerias2.ShowToastr(this, "", "Exito al elimiar!", "success"); Limpiar(); } else { Utilerias2.ShowToastr(this, "", "Error al eliminar", "error"); Limpiar(); } } else { Utilerias2.ShowToastr(this, "", "Este id no existe", "Warning"); } }
protected void BuscarIdBtn_Click(object sender, EventArgs e) { Motores motor = new Motores(); Utilerias utileria = new Utilerias(); motor.MotorId = utileria.ConvertirValor(BuscarIdTextBox.Text); if (motor.Buscar(motor.MotorId)) { DescripcionTextBox.Text = motor.Descripcion; } else { Utilerias2.ShowToastr(this, "", "Id no encontrado!", "Warning"); Limpiar(); } }
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Validar(); Motores motor = new Motores(); if (Request.QueryString["MotorId"] != null) { int id = 0; int.TryParse(Request.QueryString["MotorId"].ToString(), out id); if (motor.Buscar(id)) { DevolverValores(motor); } } } }
protected void BuscarButton_Click(object sender, EventArgs e) { Motores motor = new Motores(); ObtenerValores(motor); if (MotorIdTextBox.Text.Length == 0) { Validaciones.ShowToastr(this, "Advertencia", "Debe insertar un Id", "warning"); } else { if (motor.Buscar(motor.MotorId)) { Limpiar(); DevolverValores(motor); } else { Validaciones.ShowToastr(this, "Advertencia", "Id no encontrado", "warning"); Limpiar(); } } }