示例#1
0
 public void ShowFertilityList()
 {
     _Model      = new PersonStatisticsViewModel();
     DataContext = _Model;
     _Model.DownloadMostFertilyPersons();
     ShowDialog();
 }
示例#2
0
 public void ShowPersonsWithoutChilds()
 {
     _Model      = new PersonStatisticsViewModel();
     DataContext = _Model;
     _Model.DownloadPersonswithoutChildsData();
     ShowDialog();
 }