Exemple #1
0
 public Bestelling GetById(long id)
 {
     return(context.GetById(id));
 }
Exemple #2
0
        public void GetByIdTest()
        {
            Bestelling TestBestelling = Context.GetById(1);

            Assert.IsNotNull(TestBestelling.Id);
        }