public ActionResult ListAlleKontoer()
        {
            var db = new Models.BrukerContext();
            List <Models.Konto> listeAvKontoer = db.Kontoer.ToList();

            return(View(listeAvKontoer));
        }
Exemplo n.º 2
0
        public ActionResult ListAlleBetalinger()
        {
            var db = new Models.BrukerContext();
            List <Models.Betaling> listeAvBetalinger = db.Betalinger.ToList();

            return(View(listeAvBetalinger));
        }