public void PeopleController_Search_NotNull(string firstName, string lastName)
        {
            var peopleController = new PeopleController();

            var result = peopleController.Search(firstName, lastName);

            Microsoft.VisualStudio.TestTools.UnitTesting.Assert.IsNotNull(result);
        }