Пример #1
0
		public ProductList (Category category)
		{
			InitializeComponent();
			this.category = category;
			getProductList();
		}
Пример #2
0
		public static Category Deserialize(JsonValue value)
		{
			Category category = new Category(value ["uid"], 
											 value ["name"]);
			return category;
		}