public bool Delete(string empresaid, tb_pt_subcoleccion BE)
 {
     using (SqlConnection cnx = new SqlConnection(conex.empConexion(empresaid)))
     {
         using (SqlCommand cmd = new SqlCommand("gspTbPtSubColeccion_DELETE", cnx))
         {
             {
                 cmd.CommandType = CommandType.StoredProcedure;
                 cmd.Parameters.Add("@subcoleccionid", SqlDbType.Char, 2).Value = BE.subcoleccionid;
             }
             try
             {
                 cnx.Open();
                 if (cmd.ExecuteNonQuery() > 0)
                 {
                     return true;
                 }
                 else
                 {
                     return false;
                 }
             }
             catch (Exception ex)
             {
                 throw new Exception(ex.Message);
             }
         }
     }
 }
 public DataSet GetAll_paginacion(string empresaid, tb_pt_subcoleccion BE)
 {
     using (SqlConnection cnx = new SqlConnection(conex.empConexion(empresaid)))
     {
         using (SqlCommand cmd = new SqlCommand("gspTbPtSubColeccion_SEARCH_paginacion", cnx))
         {
             DataSet ds = new DataSet();
             {
                 cmd.CommandType = CommandType.StoredProcedure;
                 cmd.Parameters.Add("@subcoleccionid", SqlDbType.Char, 3).Value = BE.subcoleccionid;
                 cmd.Parameters.Add("@posicion", SqlDbType.Char, 10).Value = BE.posicion;
             }
             try
             {
                 cnx.Open();
                 using (SqlDataAdapter da = new SqlDataAdapter(cmd))
                 {
                     da.Fill(ds);
                 }
                 return ds;
             }
             catch (Exception ex)
             {
                 throw new Exception(ex.Message);
             }
         }
     }
 }
 public bool Insert(string empresaid, tb_pt_subcoleccion BE)
 {
     return tablaDA.Insert(empresaid, BE);
 }
 public bool Update(string empresaid, tb_pt_subcoleccion BE)
 {
     return tablaDA.Update(empresaid, BE);
 }
 public DataSet GetAll_paginacion(string empresaid, tb_pt_subcoleccion BE)
 {
     return tablaDA.GetAll_paginacion(empresaid, BE);
 }
        private void Update()
        {
            try
            {
                if (subcoleccionid.Text.Trim().Length != 2)
                {
                    MessageBox.Show("Falta Codigo subcoleccion !!!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    return;
                }
                else
                {
                    if (subcoleccionname.Text.Trim().Length == 0)
                    {
                        MessageBox.Show("Ingrese Nombre de Sub-Coleccion", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                        return;
                    }
                    else
                    {
                        var BL = new tb_pt_subcoleccionBL();
                        var BE = new tb_pt_subcoleccion();

                        BE.subcoleccionid = subcoleccionid.Text.Trim().PadLeft(2, '0');
                        BE.subcoleccionname = subcoleccionname.Text.ToUpper();

                        if (coleccionid.SelectedValue != null && coleccionid.Text.Trim().Length > 0)
                        {
                            BE.coleccionid = coleccionid.SelectedValue.ToString();
                        }
                        BE.usuar = VariablesPublicas.Usuar.Trim();

                        if (BL.Update(EmpresaID, BE))
                        {
                            SEGURIDAD_LOG("M");
                            MessageBox.Show("Datos Modificado Correctamente !!!", "Confirmación", MessageBoxButtons.OK, MessageBoxIcon.Information);
                            procesado = true;
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
        private void form_cargar_datos(String posicion)
        {
            try
            {
                var BL = new tb_pt_subcoleccionBL();
                var BE = new tb_pt_subcoleccion();
                var dt = new DataTable();
                if (subcoleccionid.Text.Trim().Length > 0)
                {
                    BE.subcoleccionid = subcoleccionid.Text.Trim().PadLeft(2, '0');
                }
                BE.posicion = posicion.Trim();

                dt = BL.GetAll_paginacion(EmpresaID, BE).Tables[0];

                if (dt.Rows.Count > 0)
                {
                    limpiar_documento();
                    ssModo = "EDIT";

                    subcoleccionid.Text = dt.Rows[0]["subcoleccionid"].ToString().Trim();
                    subcoleccionname.Text = dt.Rows[0]["subcoleccionname"].ToString().Trim();
                    coleccionid.SelectedValue = dt.Rows[0]["coleccionid"].ToString().Trim();

                    btn_editar.Enabled = true;
                    btn_eliminar.Enabled = true;
                    btn_imprimir.Enabled = true;

                    btn_primero.Enabled = true;
                    btn_anterior.Enabled = true;
                    btn_siguiente.Enabled = true;
                    btn_ultimo.Enabled = true;

                    btn_log.Enabled = true;
                    btn_salir.Enabled = true;
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
        private void Delete()
        {
            try
            {
                if (subcoleccionid.Text.Trim().Length != 2)
                {
                    MessageBox.Show("Falta Codigo subcoleccion !!!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    return;
                }
                else
                {
                    var BL = new tb_pt_subcoleccionBL();
                    var BE = new tb_pt_subcoleccion();
                    BE.subcoleccionid = subcoleccionid.Text.Trim().PadLeft(2, '0');

                    if (BL.Delete(EmpresaID, BE))
                    {
                        SEGURIDAD_LOG("E");
                        MessageBox.Show("Datos eliminados correctamente !!!", "Confirmación", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        NIVEL_FORMS();
                        form_bloqueado(false);
                        data_Tablasubcoleccion();
                        btn_nuevo.Enabled = true;
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
        private void data_Tablasubcoleccion()
        {
            try
            {
                if (Tablasubcoleccion.Rows.Count > 0)
                {
                    Tablasubcoleccion.Rows.Clear();
                }
                var BL = new tb_pt_subcoleccionBL();
                var BE = new tb_pt_subcoleccion();

                BE.subcoleccionname = txt_criterio.Text.Trim().ToUpper();

                Tablasubcoleccion = BL.GetAll(EmpresaID, BE).Tables[0];
                if (Tablasubcoleccion.Rows.Count > 0)
                {
                    btn_imprimir.Enabled = true;
                    gridsubcoleccion.DataSource = Tablasubcoleccion;
                    gridsubcoleccion.Rows[0].Selected = false;
                    gridsubcoleccion.Focus();
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }