Exemplo n.º 1
0
        protected void btnSalvar_Click(object sender, EventArgs e)
        {
            Categoria cat = new Categoria();

            cat.Nome      = txtNome.Text;
            cat.Descricao = txtDescricao.Text;
            cat.ativo     = true;

            CategoriaController ctrl = new CategoriaController();

            ctrl.Adicionar(cat);
        }