Пример #1
0
 // Update
 public static void DemoAUpdate()
 {
     Debug.Print("--- DemoAUpdate ---");
     // KlasseA ändert Attribute
     Data.Product klasseA1 = Data.Product.GetProoductById(1);
     klasseA1.Name = "Artikel 1 nach Update";
     klasseA1.Update();
 }