public bool Actief(long id, bool active)
 {
     return(context.Actief(id, active));
 }
Example #2
0
        public void ActiefTest()
        {
            bool TestBool = Context.Actief(1, true);

            Assert.IsTrue(TestBool);
        }