/// <summary> /// Método que se ejecuta al hacer click en /// el botón agregar en la vista. /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void btnGenerar_Click(object sender, EventArgs e) { try { if (_presentador.agregarProyecto()) { Server.Transfer("ConsultaProyecto.aspx?estado=1", true); } } catch (ExcepcionesTangerine.ExceptionsTangerine ex) { Server.Transfer("ConsultaProyecto.aspx?estado=2", true); } }
/// <summary> /// Método que se ejecuta al hacer click en /// el botón agregar en la vista. /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void btnGenerar_Click(object sender, EventArgs e) { try { if (_presentador.agregarProyecto()) { Server.Transfer("ConsultaProyecto.aspx?estado=1", true); } } catch (ExcepcionesTangerine.ExceptionsTangerine ex) { Logger.EscribirError(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name, ex); Server.Transfer("ConsultaProyecto.aspx?estado=2", true); } }