public void InsertTest() { long TestLong = Context.Insert(new Bestelling() { Id = 1, Actief = true, KlantID = 1 }); Assert.AreEqual(1, TestLong); }
public long Insert(Bestelling bestelling) { if (bestelling == null) { throw new NullReferenceException("Geen product."); } return(context.Insert(bestelling)); }
public long Insert(Bestelling obj) { return(context.Insert(obj)); }
public Bestelling Insert(Bestelling entity) { return(bestellingContext.Insert(entity)); }