public List <Categoria> GetCategoriasconSlash() { List <Categoria> categorias = null; try { dCategoria = new DCategoria(); categorias = dCategoria.GetCategorias("/"); } catch (Exception) { throw; } return(categorias); }
public List <Categoria> GetCategoriasTop5(string NombreCategoria) { List <Categoria> categorias = null; try { dCategoria = new DCategoria(); categorias = dCategoria.GetCategorias(NombreCategoria).Take(5).ToList(); } catch (Exception) { throw; } return(categorias); }