public void Update()
        {
            ProductcategorieSQLContext psc = new ProductcategorieSQLContext();
            ProductCategorieRepository pr  = new ProductCategorieRepository(psc);

            Productcategorie p = pr.Retrieve("1");

            p.Omschrijving = "testaangepast";

            pr.Update(p);
        }
Beispiel #2
0
        public void SaveOrUpdate()
        {
            ProductcategorieSQLContext psc = new ProductcategorieSQLContext();
            ProductCategorieRepository pr  = new ProductCategorieRepository(psc);

            if (Id != 0)
            {
                pr.Update(this);
            }
            else
            {
                pr.Create(this);
            }
        }