public async Task <IActionResult> Create([Bind("Id,Cpf,Nome")] Cotista cotista) { if (ModelState.IsValid) { _context.Add(cotista); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(cotista)); }
public async Task <IActionResult> Create([Bind("ProdutoID,Descricao,Preco,Qtde")] Produto produto) { if (ModelState.IsValid) { _context.Add(produto); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(produto)); }
public async Task <IActionResult> Create([Bind("ClienteId,Nome,Data,Documento,Telefone,TelTipo,Endereco,EndeTipo,TipoCliente")] Cliente cliente) { if (ModelState.IsValid) { cliente.ClienteId = Guid.NewGuid(); _context.Add(cliente); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(cliente)); }
public Jogos Post(Jogos Filme) { banco.Add(Filme); banco.SaveChanges(); return(Filme); }