public ActionResult Customer() { ViewBag.Message = "Overzicht van alle klanten"; var customerLogic = CustomerFactory.ManageCustomers(); var customers = customerLogic.GetAllCustomers(); return(View(customers)); }