public void ExistsByIdTestIsTrue()
        {
            // Act
            var result = departmentRepository.ExistsById("ENGL");

            // Assert
            Assert.IsTrue(result);
        }