// GET: LocationController
 /// <summary>
 /// Show all the locations that exist
 /// </summary>
 /// <returns></returns>
 public ActionResult Index()
 {
     return(View(_partsBL.GetLocation().Select(location => _mapper.cast2LocationIndexVM(location)).ToList()));
 }