public void When_GetProjectById_Then_VerifyResults()
        {
            var result = controller.GetProjectById(1) as OkNegotiatedContentResult <ProjectEntity>;

            Assert.IsNotNull(result);
        }