private void DownloadNewGames() { var service = new BlobStorageService(_mainViewModel.Connection); foreach (var game in remoteGames) { if (!GameList.Any(p => p.Model.FileName.Equals(game))) { service.DownloadFile(game, $"{_mainViewModel.DataDirectory}\\{game}"); } } }
private bool IsSolved() { return(!GameList.Any(ints => ints.Contains(0))); }