public async Task <IActionResult> Create([Bind("ResidenciaId, UsuarioId")] ResidenciasUsuarios residenciasUsuarios) { try { if (ModelState.IsValid) { _context.Add(residenciasUsuarios); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } } catch (DbUpdateException) { ModelState.AddModelError("", "Não foi possível inserir dados."); } return(View(residenciasUsuarios)); }
public async Task InsertAsync(Regiao regiao) { _context.Add(regiao); await _context.SaveChangesAsync(); }
public async Task InsertAsync(Sensor sensor) { _context.Add(sensor); await _context.SaveChangesAsync(); }
public async Task InsertAsync(Cadastro cadastro) { _context.Add(cadastro); await _context.SaveChangesAsync(); }
public async Task InsertAsync(Barragem barragem) { _context.Add(barragem); await _context.SaveChangesAsync(); }
public async Task InsertAsync(SensorHistorico historico) { _context.Add(historico); await _context.SaveChangesAsync(); }