protected void btnAgregarCancion_OnClick(object sender, EventArgs e) { try { if (ddlListas.SelectedIndex == BusinessVariables.ComboBoxCatalogo.IndexSeleccione) { throw new Exception("Selecciona una lista para agregar la canción"); } _nLista.AgregarCancionLista(int.Parse(ddlListas.SelectedValue), IdCancion); Cancion song = new BusinessCancion().ObtenerCancion(IdCancion); CancionHelper newSong = new CancionHelper { Id = song.Id, Descripcion = song.Descripcion }; ScriptManager.RegisterClientScriptBlock(Page, typeof(Page), "ScriptAddSong", "AddNewSongtoList(" + ddlListas.SelectedValue + "," + new JavaScriptSerializer().Serialize(newSong) + " );", true); ddlListas.SelectedIndex = BusinessVariables.ComboBoxCatalogo.IndexSeleccione; if (OnAceptarModal != null) { OnAceptarModal(); } } catch (Exception ex) { if (_lstError == null) { _lstError = new List <string>(); } _lstError.Add(ex.Message); AlertaGeneral = _lstError; } }
public List <CancionesHelper> ObtenerListaCancionesPalabra(string descripcion) { try { using (BusinessCancion negocio = new BusinessCancion()) { return(negocio.ObtenerListaCancionesPalabra(descripcion)); } } catch (Exception ex) { throw new Exception(ex.Message); } }
public static string AgregarLista(string name, string address) { string result = null; try { BusinessCancion negocio = new BusinessCancion(); result = negocio.ObtenerCancion(1).Descripcion; } catch (Exception ex) { //if (_lstError == null) //{ // _lstError = new List<string>(); //} //_lstError.Add(ex.Message); //AlertaGeneral = _lstError; } return(result); }