Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated to 4.2

...

Last but not least, add this to the InitializeInitializeAsync method after the Families is set from the IFamilyService

Code Block
protected override async Task InitializeInitializeAsync()
{
    var families = _familyService.LoadFamilies();
    Families = new ObservableCollection<Family>(families);

    UpdateSearchFilter();
}

...