public void Then_Returns_OK(
            [Greedy] DemandController controller)
        {
            var result = controller.ShowDemand() as OkResult;

            result.Should().NotBeNull();
            result !.StatusCode.Should().Be((int)HttpStatusCode.OK);
        }