Exemple #1
0
		public static Store Deserialize (JsonValue jsonStore)
		{
			Store store = new Store(jsonStore ["uid"], jsonStore ["name"]);
			return store;
		}
		public CategoryList (Store store)
		{
			InitializeComponent ();
			this.store = store;
			getCategoryListFromWebService ();
		}