public async Task TestGetAppointmentsOfClient_Returns_ActionResultAsNotFound_Client_NotFound()
        {
            // Arrange
            var clientId = Guid.NewGuid();

            // Act
            var response = await controller.GetAppointmentsForClientAsync(clientId);

            var result = response.Result;

            // Assert
            result.Should().BeOfType <NotFoundResult>();
        }