public ProductViewModel(Product product, INotifyView view)
 {
     this.product      = product;
     this.view         = view;
     FavoriteLabelText = Settings.ProductIsFavorite(product) ? removeLabel : markLabel;
 }