public async void ClearAuditLogCommandAction(Object parameter)
        {
            App.AppLogger.Logger.Log(devoctomy.DFramework.Logging.Interfaces.LoggerMessageType.VerboseHigh | devoctomy.DFramework.Logging.Interfaces.LoggerMessageType.Information, "Clear audit log command invoked.");

            if (await App.Controller.MainPageInstance.DisplayAlert("Clear Audit Log",
                                                                   "Are you sure you want to clear the credential audit log? Please note, you will no longer see audit history before this point.",
                                                                   "Yes", "No"))
            {
                Credential.ClearAuditEntries();
                App.Controller.ClosePopup(parameter);
            }
        }