protected void gv_Grilla_RowCommand(object sender, GridViewCommandEventArgs e) { try { if (e.CommandName.Equals("Insert")) { TextBox tbDescripcion = gv_Grilla.FooterRow.FindControl("Descripcion") as TextBox; TipoDocumentacion tDoc = new TipoDocumentacion(); tDoc.Descripcion = tbDescripcion.Text; string mensajeer = ""; InvocaWsDao.AMTiposdeDocumentacion(null, tDoc.Descripcion, out mensajeer); mensaje.QuienLLama = "btnAlerta"; mensaje.TipoMensaje = Mensaje.infoMensaje.Alerta; mensaje.DescripcionMensaje = "La nueva linea se ha cargado correctamente."; mensaje.Mostrar(); LstTiposDocumentacion.Add(tDoc); LlenaGrilla(string.Empty, string.Empty); } } catch (Exception err) { if (log.IsErrorEnabled) { log.ErrorFormat("Se generó una excepción : {0}", err.Message); } throw err; } }
private void Fill(out TipoDocumentacion oObj, NullableDataReader dr) { oObj = new TipoDocumentacion(dr.GetInt32("codTipoDocumentacion"), dr.GetNullableString("descripcion") == null ? "" : dr.GetString("descripcion") ); }
public DocumentacioIE(TipoDocumentacion iTipoDocumentacion, String comentario, List <HttpPostedFile> lArchivos) { this._TipoDocumentacion = iTipoDocumentacion; this._ComentarioIngreso = comentario; this._lArchivo = lArchivos; }
public DocumentacioIE() { this._TipoDocumentacion = null; this._ComentarioIngreso = null; this._lArchivo = null; }