public IActionResult Insert(CustomerDetails obj)
        {
            FakeRepository.AddNewCustomer(obj);

            //return View("DisplayPage", FakeRepository.GetCustomer());
            return(View("GreetingPage"));
        }