/// <summary>
        /// The Index. Always sends out the list to the website.
        /// </summary>
        public IActionResult Index()
        {
            pvm.PersonList = _person.AllPeople();

            return(View(pvm));
        }