public ActionResult Delete(Customer customer)
 {
     customerDataService.Remove(customer);
     return(RedirectToAction("Customers", "Home"));
 }