public ActionResult Delete(int CustomerId)
 {
     if (Session["CustomerId"] == null)
     {
         return(RedirectToAction("Login", "Home"));
     }
     ManageCustomerService.DeleteCustomer(CustomerId);
     return(RedirectToAction("Grid"));
 }