public void Get_WhenCalled_ReturnsOkResult()
        {
            // Act
            var okResult = _controller.GetAllAsync();

            // Assert
            Assert.IsType <OkObjectResult>(okResult);
        }