private void IniciarVenda(object sender, EventArgs e) { try { var cliente = inputCliente.SelectedValue; using (var context = new ApplicationDbContext()) { var venda = new Venda(); var verificaCliente = context.Clientes.Where(x => x.Id == int.Parse(cliente.ToString())).FirstOrDefault(); if (verificaCliente == null) { throw new Exception("Cliente não encontrado"); } venda.ClienteId = int.Parse(cliente.ToString()); context.Vendas.Add(venda); context.SaveChanges(); var formVenda = new FormVenda(venda.Id); formVenda.ShowDialog(); this.Close(); } } catch (Exception ex) { MessageBox.Show(ex.Message, "Sucesso"); } }
private void AbrirFormVenda(object sender, EventArgs e) { var formTipoQuentinha = new FormVenda(int.Parse(idVenda.Text.ToString())); formTipoQuentinha.ShowDialog(); }