Ejemplo n.º 1
0
        private void PersonalInformation()
        {
            if (user.CanSeePersonalInformation())
            {
                MyAccountPersonalInformation personalInfo = new MyAccountPersonalInformation((Client)user);
                myAccountNode.AddNode(personalInfo);

                this.menuNodeList.Add(myAccountNode);
            }
        }
Ejemplo n.º 2
0
        private void PriceConfiguration()
        {
            if (user.CanConfigurePrices())
            {
                ConfigurationPrice priceConfig = new ConfigurationPrice();
                configurationNode.AddNode(priceConfig);

                this.menuNodeList.Add(configurationNode);
            }
        }