Esempio n. 1
0
        public void DeleteShopCard(int id)
        {
            var entity = _context.ShoppingBox.FirstOrDefault(x => x.Id == id);

            _context.Remove(entity);
            _context.SaveChanges();
        }
Esempio n. 2
0
        public void Delete(int id)
        {
            var entity = _context.Book.FirstOrDefault(x => x.Id == id);

            _context.Remove(entity);
            _context.SaveChanges();
        }