Exemplo n.º 1
0
        private void OnPhotoThumbnailSelected(PhotoThumbnail photoThumbnail)
        {
            var categoryPreview = TopCategories.SingleOrDefault(c => c.PhotoThumbnails.Contains(photoThumbnail));

            if (categoryPreview != null)
            {
                _navigationFacade.NavigateToPhotoStream(categoryPreview, photoThumbnail);
            }
        }
        private void OnPhotoThumbnailSelected(ReturnAccessory accessory)
        {
            var categoryPreview = TopCategories.SingleOrDefault(c => c.ListOfAccessory.Contains(accessory));

            if (categoryPreview != null)
            {
                //_navigationFacade.NavigateToPhotoStream(categoryPreview, accessory);
                _navigationFacade.NavigateToAccessoryDetail(categoryPreview, accessory);
                //_navigationFacade.NavigateToRegisterPage();
            }
        }