コード例 #1
0
 public bool Actief(long id, bool active)
 {
     return(context.Actief(id, active));
 }
コード例 #2
0
ファイル: CategorieTest.cs プロジェクト: Iglioth/ManiaGaming
        public void ActiefTest()
        {
            bool TestBool = Context.Actief(1, true);

            Assert.IsTrue(TestBool);
        }