コード例 #1
0
        public void DeleteInterpretTest()
        {
            _interpretService.DeleteInterpret(_interpret1Id);
            Assert.IsNull(_interpretService.GetInterpret(_interpret1Id));

            _interpretService.DeleteInterpret(_interpret2Id);
            Assert.IsNull(_interpretService.GetInterpret(_interpret2Id));

            _interpretService.DeleteInterpret(_interpret3Id);
            Assert.IsNull(_interpretService.GetInterpret(_interpret3Id));
        }
コード例 #2
0
 public void DeleteInterpret(int interpretId)
 {
     _interpretService.DeleteInterpret(interpretId);
 }