//GET /api/customers public IEnumerable <Customer> GetCustomers() { return(_repo.GetCustomers().ToList()); }
// GET: Customer public ActionResult Index() { List <Customer> customers = _repo.GetCustomers().ToList();; return(View(customers)); }