Example #1
0
        public void Delete(int id)
        {
            Funcionario funcionario = FindById(id);

            _context.Remove(funcionario);
            _context.SaveChanges();
        }
Example #2
0
        public void Remove(int id)
        {
            Imagem imagem = _context.Image.Find(id);

            _context.Image.Remove(imagem);
            _context.SaveChanges();
        }
        public void Delete(int id)
        {
            Cliente cliente = FindById(id);

            _context.Remove(cliente);
            _context.SaveChanges();
        }
        public void Delete(int id)
        {
            Produto produto = FindById(id);

            _context.Produto.Remove(produto);
            _context.SaveChanges();
        }
 public void Delete(int id)
 {
     Categoria c = FindById(id);
     if (c != null)
     {
         _context.Remove(c);
         _context.SaveChanges();
         return;
     }
     throw new ExceptionNotFoundId();
 }      
Example #6
0
 public void Insert(NewsLetterEmail newsLetter)
 {
     _context.NewsLetterEmail.Add(newsLetter);
     _context.SaveChanges();
 }