// GET: CustomerMaster
 public ActionResult Index()
 {
     List<CustomerModel> custs = new List<CustomerModel>();
     CustomerModel cm = new CustomerModel();
     custs = cm.GetAllCusts();
     return View(custs);
 }