Exemplo n.º 1
0
        public AbilitiesViewModel()
        {
            Title = AbilityType;
            var abs = new AbilitiesService();

            Abilities = abs.GetAbilitiesByType(AbilityType);
        }
Exemplo n.º 2
0
        public AbilitiesViewModel(string itemType)
        {
            AbilityType = itemType;
            Title       = AbilityType;
            var abs = new AbilitiesService();

            Abilities = abs.GetAbilitiesByType(AbilityType);
        }