Exemplo n.º 1
0
        public bool Activate(SmartMenu smartMenu)
        {
            List <Compensation> compensations = accessPoint.GetAllCompensations();

            SmartMenu sm = new SmartMenu("Alle godtgørelser", "Tilbage");

            foreach (Compensation compensation in compensations)
            {
                sm.Attach(new ShowCompensation(compensation));
            }

            sm.Activate();

            return(false);
        }