public void Excluir(int Id) { Categoria categoria = ObterCategoria(Id); _banco.Remove(categoria); _banco.SaveChanges(); }
public void Excluir(int Id) { Cliente cliente = ObterCliente(Id); _banco.Remove(cliente); _banco.SaveChanges(); }
public void Excluir(int Id) { Colaborador cliente = ObterColaborador(Id); _banco.Remove(cliente); _banco.SaveChanges(); }
public void RemoveAll() { var prods = FindAll(); foreach (var item in prods) { contexto.Remove(item); } }
protected override async Task Handle(Command request, CancellationToken cancellationToken) { var produto = await _lojaContext .Set <Produto>() .FirstOrDefaultAsync(p => p.Id == request.Id); ChecarSe.Encontrou(produto); _lojaContext.Remove(produto); await _lojaContext.SaveChangesAsync(); }
public async Task Excluir(int id) { var produto = await _lojaContext .Set <Produto>() .Where(p => p.Id == id) .FirstOrDefaultAsync(); ChecarSe.Encontrou(produto); _lojaContext.Remove(produto); await _lojaContext.SaveChangesAsync(); }
public async Task Excluir(int id) { var cliente = await _lojaContext .Set <Cliente>() .Where(p => p.Id == id) .FirstOrDefaultAsync(); if (cliente == null) { throw new ValidationException("", "Registro não encontrado"); } _lojaContext.Remove(cliente); await _lojaContext.SaveChangesAsync(); }
public async Task <IActionResult> Excluir(int id) { var cliente = await _lojaContext .Set <Cliente>() .Where(p => p.Id == id) .FirstOrDefaultAsync(); if (cliente == null) { return(NotFound()); } _lojaContext.Remove(cliente); await _lojaContext.SaveChangesAsync(); return(Ok("Removido!")); }