protected void BtnnuevaCategoria_Click(object sender, EventArgs e) { //obtener datos de la imagen Categoria categoria = new Categoria(); CategoriaBL categoriaBL = new CategoriaBL(); categoria._Nombre = txtCategoria.Text.Trim(); if (categoriaBL.Agregar(categoria)) { Lista(); } Response.Write("<script>alert('" + categoriaBL.Mensaje + "');</script>"); Response.Write(categoriaBL.Mensaje); }
public bool Agregar(string nombre, string categoriaPadre) { Categoria categoria = new Categoria(); categoria.Nombre = nombre; categoria.CategoriaPadre = categoriaPadre; CategoriaBL categoriaBL = new CategoriaBL(); if (categoriaBL.Agregar(categoria)) { return(true); } else { return(false); } }
public string[] Agregar(string codCategoria, string nombre, string catpadre) { Categoria categoria = new Categoria(); categoria.CodCategoria = codCategoria; categoria.Nombre = nombre; categoria.CategoriaPadre = catpadre; CategoriaBL categoriaBL = new CategoriaBL(); string[] respuesta = new string[2]; bool CodError = categoriaBL.Agregar(categoria); if (CodError == true) { respuesta[0] = "true"; } else { respuesta[0] = "false"; } respuesta[1] = categoriaBL.Mensaje; return(respuesta); }