private static bool SorteringEtterInntekt(Tribune a, Tribune b)
        {
            bool temp = a.SolgtFor() < b.SolgtFor();

            return(temp);
        }
        private static bool SorteringEtterNavn(Tribune a, Tribune b)
        {
            bool temp = string.CompareOrdinal(a.ToString(), b.ToString()) > 0;

            return(temp);
        }