Exemplo n.º 1
0
        //
        // GET: /CustomerRegistration/

        public ActionResult Index()
        {
            var customerList = DaCustomer.GetAllCustomers();

            if (customerList == null)
            {
                return(RedirectToAction("Index"));
            }

            return(View(customerList));
        }