// GET: CustomerController
 public ActionResult Index()
 {
     return(View(_partsBL.GetCustomer().Select(customer => _mapper.cast2CustomerIndexVM(customer)).ToList()));
 }