public string Insertar(Acta_Detalle detalle)
        {
            string rpta = "";

            try
            {
                cmdActaDetalle.CommandType = CommandType.Text;
                cmdActaDetalle.CommandText = @"INSERT INTO [dbo].[DetalleActa]
           ([idActa]
           ,[idResolucion])
     VALUES
           (@idActa
           ,@idResolucion)";
                cmdActaDetalle.Connection  = conn.conectarBD();
                {
                    cmdActaDetalle.Parameters.AddWithValue("@idActa", detalle.idActa);
                    cmdActaDetalle.Parameters.AddWithValue("@idResolucion", detalle.idResolucion);
                }
                int registros;
                registros = cmdActaDetalle.ExecuteNonQuery();
                if (registros == 1)
                {
                    rpta = "OK";
                }
                else
                {
                    rpta = "Error al Insertar";
                }
            }
            catch (Exception ex)
            {
                System.Console.Write(ex.Message);
            }
            return(rpta);
        }
Ejemplo n.º 2
0
        public void guardar()
        {
            if (TextBox_Acta.Text == "" ||
                GridView1.Rows.Count < 1
                )
            {
                lblAgregado.Text = "Campos Incompletos";
            }
            else
            {
                Acta_Logica actalogica = new Acta_Logica();
                Acta        acta       = new Acta();
                acta.id        = TextBox_Acta.Text;
                acta.idConsejo = Convert.ToInt32(DropDownList1.SelectedValue);
                actalogica.Insertar(acta);
                foreach (GridViewRow row in GridView1.Rows)
                {
                    Acta_Detalle_Logica consejodetalle = new Acta_Detalle_Logica();
                    Acta_Detalle        feriadetalle   = new Acta_Detalle();
                    feriadetalle.idActa       = TextBox_Acta.Text;
                    feriadetalle.idResolucion = row.Cells[2].Text;
                    consejodetalle.Insertar(feriadetalle);
                }

                lblAgregado.Text = "Consejo Ingresado Correctamente";
            }
        }
 public string Insertar(Acta_Detalle detalle)
 {
     return(detalledatos.Insertar(detalle));
 }