static void ConfigureCell(ProductCell cell, Product product)
 {
     cell.TitleLabel.Text    = product.Name;
     cell.PriceLabel.Text    = product.Price;
     cell.SubtitleLabel.Text = product.Description;
 }
		static void ConfigureCell (ProductCell cell, Product product)
		{
			cell.TitleLabel.Text = product.Name;
			cell.PriceLabel.Text = product.Price;
			cell.SubtitleLabel.Text = product.Description;
		}