protected override bool ShouldRefresh() => false;         // just hit F5 :-D

        protected async override Task <IEnumerable <ContactReferenceVM> > LoadDataAsync()
        {
            var dto = await contactFacade.GetAllContactReferencesAsync();

            return(dto.Value ?? new());
        }