public boolean reserverBord(String person, int[] reserverBord) {
   if (bordet.reserverBord(person, reserverBord)) {
     // bord reservert
     return true;
   } else {
     // bord ikke reservert
     return false;
   }
 }
 public int frigiBord(int[] bordene) {
   return bordet.frigiBord(bordene);
 }
 public int[] finnBordReservert(String person) {
   return bordet.finnBordReservert(person);
 }
 public int antallOpptatt() {
   return bordet.getAntallOpptatt();
 }
 public int antallLedigeBord() {
   return bordet.getAntallLedigeBord();
 }