public void ExistsByIdTestIsTrue()
        {
            // Act
            var result = statusRepository.ExistsById(1);

            // Assert
            Assert.IsTrue(result);
        }