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