public void InterviewOperationTest_return_Successfully()
        {
            //Arrange
            InterviewResult operation = new InterviewResult();

            operation.Operate    = "Update";
            operation.PositionID = "11220";
            operation.CPNum      = "00019270";
            var expect = "Successfully";
            //Act
            var result = CommonOperationExcute.InterviewOperation(operation, operation.PositionID);

            //Assert
            Assert.AreEqual(expect, result, $"  Interview Update is { result}");
        }