private async Task LoadAll()
        {
            try
            {
                IsCardBusy        = true;
                IsRequestsBusy    = true;
                IsCardholdersBusy = true;

                await Task.Run(() =>
                {
                    Cards                   = cardService.GetAll();
                    CardRequests            = sCardRequests.GetAll();
                    Cardholders             = cardholderService.GetAll();
                    ReplacementRequests     = cardReplacements.GetAll();
                    PersonalizationRequests = sPersonalization.GetAll();

                    ProcessCards();
                    ProcessCardholders();

                    IsRequestsBusy = false;
                });
            }
            catch (Exception ex)
            {
                toaster.ShowErrorToast(Toaster.ErrorTitle, ex.Message);
            }
        }