// GET: Customer
        public ActionResult Index()
        {
            List <Person> lstCust = personBusiness.GetPersonList();

            return(View("~/Views/Customer/CustomerList.cshtml", lstCust));
        }