示例#1
0
        public ActionResult Customer()
        {
            ViewBag.Message = "Overzicht van alle klanten";

            var customerLogic = CustomerFactory.ManageCustomers();

            var customers = customerLogic.GetAllCustomers();


            return(View(customers));
        }