protected void btnSalvar_Click(object sender, EventArgs e) { CategoriasController ctrl = new CategoriasController(); Categoria categoria = new Categoria(); categoria.Nome = txtNome.Text; categoria.Descricao = txtDesc.Text; ctrl.Adicionar(categoria); }
protected void btnSalvar_Click(object sender, EventArgs e) { Categoria cat = new Categoria(); cat.Nome = txtNome.Text; cat.Descricao = txtDescricao.Text; cat.Ativo = true; CategoriasController.Adicionar(cat); }
private void btnSalvar_Click(object sender, EventArgs e) { try { Categoria categ = new Categoria(); categ.Nome = txtNome.Text; CategoriasController catController = new CategoriasController(); catController.Adicionar(categ); MessageBox.Show("Categoria salva com sucesso!"); } catch (Exception ex) { MessageBox.Show("Erro ao Salvar! (" + ex.Message + ")"); } }
protected void btnSalvar_Click(object sender, EventArgs e) { /*string nome; * string descricao; * nome = txtNome.Text; * descricao = txtNome.Text; */ CategoriasController ctrl = new CategoriasController(); Categoria cat = new Categoria(); cat.Nome = txtNome.Text; cat.Descricao = txtDescricao.Text; cat.Ativo = true; ctrl.Adicionar(cat); //contexto.Categorias.Add(cat); //contexto.SaveChanges(); }
protected void btnSalvar_Click(object sender, EventArgs e) { categoria.Nome = txtNome.Text; categoria.Descricao = txtDescricao.Text; if (chkAtivo.Checked) { categoria.Ativo = true; } else { categoria.Ativo = false; } contexto.Adicionar(categoria); var ID = "Adicionado Com sucesso!!"; ClientScript.RegisterStartupScript(this.GetType(), "script", "alert('" + ID + "');", true); Limpar(); }