public async Task <IActionResult> Create([Bind("Id,Nombre")] Cliente cliente) { if (ModelState.IsValid) { _context.Add(cliente); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(cliente)); }
public async Task <IActionResult> Create([Bind("Id,Precio,FechaAdquisicion,ModeloId")] Auto auto) { if (ModelState.IsValid) { _context.Add(auto); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(auto)); }
public async Task <IActionResult> Create([Bind("Id,Nombre,Sueldo,PorcentajeComision")] Vendedor vendedor) { if (ModelState.IsValid) { _context.Add(vendedor); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(vendedor)); }
public async Task <IActionResult> Create([Bind("Id,Nombre,Descripcion,MarcaId")] Modelo modelo) { if (ModelState.IsValid) { _context.Add(modelo); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(modelo)); }
public async Task <IActionResult> Create([Bind("Id,Fecha,AutoId,ClienteId,VendedorId")] Venta venta) { if (ModelState.IsValid) { _context.Add(venta); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(venta)); }