Esempio n. 1
0
		public ProductList (Category category)
		{
			InitializeComponent();
			this.category = category;
			getProductList();
		}
Esempio n. 2
0
		public static Category Deserialize(JsonValue value)
		{
			Category category = new Category(value ["uid"], 
											 value ["name"]);
			return category;
		}