public bool DeletarProduto(List <Produto> prod) { bool resultado = true; try { _produtoDAO.ApagarProduto(prod); } catch (Exception e) { _toastNotification.AddErrorToastMessage(e.Message, new ToastrOptions { Title = "Ops", TimeOut = 2000 }); return(false); } return(resultado); }