public ActionResult ListAlleKontoer() { var db = new Models.BrukerContext(); List <Models.Konto> listeAvKontoer = db.Kontoer.ToList(); return(View(listeAvKontoer)); }
public ActionResult ListAlleBetalinger() { var db = new Models.BrukerContext(); List <Models.Betaling> listeAvBetalinger = db.Betalinger.ToList(); return(View(listeAvBetalinger)); }