public ActionResult Detail(Guid id)
        {
            //Instantiate a person type object and assign the event to search by id
            Person person = personRepository.ReadById(id);

            return(View(person));
        }