Ejemplo n.º 1
0
        // This is the Insert method to insert the entered BuzonSugerencia item
        // USAGE: <asp:FormView InsertMethod="InsertItem">
        public void InsertItem()
        {
            using (_db)
            {
                var item = new RHApp.Models.BuzonSugerencia();

                TryUpdateModel(item);

                if (ModelState.IsValid)
                {
                    // Save changes
                    _db.BuzonSugerencias.Add(item);
                    _db.SaveChanges();

                    Response.Redirect("Default");
                }
            }
        }
Ejemplo n.º 2
0
        // This is the Insert method to insert the entered BuzonSugerencia item
        // USAGE: <asp:FormView InsertMethod="InsertItem">
        public void InsertItem()
        {
            using (_db)
            {
                var item = new RHApp.Models.BuzonSugerencia();

                TryUpdateModel(item);

                if (ModelState.IsValid)
                {
                    // Save changes
                    _db.BuzonSugerencias.Add(item);
                    _db.SaveChanges();

                    Response.Redirect("Default");
                }
            }
        }