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