public async Task <IActionResult> Create([Bind("IdDepto,strDepto")] Departamento departamento) { if (ModelState.IsValid) { _context.Add(departamento); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(departamento)); }
// Insert: Vendas public async Task InsertAsync(Vendas vendas) { try { _context.Add(vendas); await _context.SaveChangesAsync(); } catch (Exception e) { throw new Exception(e.Message); } }
// Insert: Cliente public async Task InsertAsync(Cliente cliente) { try { _context.Add(cliente); await _context.SaveChangesAsync(); } catch (Exception e) { throw new Exception(e.Message); } }
// Insert: Produto public async Task InsertAsync(Produto produto) { try { _context.Add(produto); await _context.SaveChangesAsync(); } catch (Exception e) { throw new Exception(e.Message); } }
// Insert: Pagtos public async Task InsertAsync(FormaPagto formaPagto) { try { _context.Add(formaPagto); await _context.SaveChangesAsync(); } catch (Exception e) { throw new Exception(e.Message); } }