public Bestelling GetById(long id) { return(context.GetById(id)); }
public void GetByIdTest() { Bestelling TestBestelling = Context.GetById(1); Assert.IsNotNull(TestBestelling.Id); }