private async Task FillListWithBookingsAsync(int userId)
        {
            BookingViewModel.UserId = userId;

            try
            {
                await BookingViewModel.GetAllBookingsOfOwnedAccommodationsAsync();
            }
            catch (Exception ex)
            {
                await new MessageDialog(ex.Message).ShowAsync();
            }
        }