private async void RetrieveListOfSessions()
        {
            Busy.SetBusy(true, "Getting active Sessions...");

            try
            {
                var sessions = await _pokerService.GetSessions();

                sessions.ForEach(item => Sessions.Add(item));
            }
            catch (FHException e)
            {
                await new MessageDialog(e.Message).ShowAsync();
            }

            Busy.SetBusy(false);
        }