Exemple #1
0
        public async Task <IActionResult> Create([Bind("Id,Nombre,Apellido,Email")] Persona persona)
        {
            if (ModelState.IsValid)
            {
                _context.Add(persona);
                await _context.SaveChangesAsync();

                return(RedirectToAction(nameof(Index)));
            }
            return(View(persona));
        }
Exemple #2
0
        public async Task <IActionResult> Create([Bind("Id,producto,descripcion,idCategoria,precio,precioxmayor")] Productos productos)
        {
            if (ModelState.IsValid)
            {
                _context.Add(productos);
                await _context.SaveChangesAsync();

                return(RedirectToAction(nameof(Index)));
            }
            return(View(productos));
        }
Exemple #3
0
        public async Task <IActionResult> Create([Bind("Id,Nombre,Telefono,Email")] Registro registro)
        {
            if (ModelState.IsValid)
            {
                _context.Add(registro);
                await _context.SaveChangesAsync();

                return(RedirectToAction(nameof(Index)));
            }
            return(View(registro));
        }