public async Task <IActionResult> Create([Bind("Id,Naam,KlantId,Bezet")] Reservering reservering) { if (ModelState.IsValid) { _context.Add(reservering); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(reservering)); }
public async Task <IActionResult> Create([Bind("Id,Naam,Adres,Woonplaats,Email")] Klant klant) { if (ModelState.IsValid) { _context.Add(klant); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(klant)); }
public void Add(Genre newGenre) { _context.Add(newGenre); _context.SaveChanges(); }
public void Add(Movie newAsset) { _context.Add(newAsset); Save(); }
public void Add(Director newDirector) { _context.Add(newDirector); _context.SaveChanges(); }
public void Add(Actor newActor) { _context.Add(newActor); Save(); }