Esempio n. 1
0
 /// <remarks/>
 public System.IAsyncResult Beginupdate(TUpdate_Input[] Catalogs, System.AsyncCallback callback, object asyncState) {
     return this.BeginInvoke("update", new object[] {
                 Catalogs}, callback, asyncState);
 }
Esempio n. 2
0
        /**
         * Move a Catalog and check if the update was successful
         */
        public void testMove( TUpdate_Input MoveCatalog)
        {
            TUpdate_Return[] Catalogs_out = catalogService.update(new TUpdate_Input[]{MoveCatalog});

            // test if creation was successful
            Assert.AreEqual(1, Catalogs_out.GetLength(0), "move ok");
            Assert.IsTrue(Catalogs_out[0].updated, "updated?");
        }
Esempio n. 3
0
 public TUpdate_Return[] update(TUpdate_Input[] Catalogs) {
     object[] results = this.Invoke("update", new object[] {
                 Catalogs});
     return ((TUpdate_Return[])(results[0]));
 }
Esempio n. 4
0
        /**
         * Update a Catalog and check if the update was successful
         */
        public void testUpdate()
        {
            TUpdate_Input[] Catalogs_up = new TUpdate_Input[] { Catalog_up };
            TUpdate_Return[] Catalogs_out = catalogService.update(Catalogs_up);

            // test if creation was successful
            Assert.AreEqual(1, Catalogs_out.GetLength(0), "create update set");
            Assert.IsTrue(Catalogs_out[0].updated, "updated?");
        }