public ActionResult Index()
        {
            var data  = _testAppService.GetPeopleAndCourses();
            var model = new HomeViewModel
            {
                Data = data
            };

            return(View(model));
        }