public int CrearCategoria(Categoria item) { try { _contexto.CategoriaItems.Add(item); _contexto.SaveChanges(); int id = item.Id; return(id); } catch (Exception e) { throw new Exception(e.Message); } }
public int CrearLibro(Libro item) { try { _contexto.LibroItems.Add(item); _contexto.SaveChanges(); int id = item.Id; return(id); } catch (Exception e) { throw new Exception(e.Message); } }