public MonkeysViewModel()
 {
     CreateMonkeyCollection();
     ThreeMonkeys  = Monkeys.Take(3).ToList();
     ExpandCommand = new Command <Monkey>(Expand);
     IsExpanded    = true;
 }