public ActionResult LocationEdit(BvLocation l)
 {
     if (ModelState.IsValid)
     {
         lRepo.SaveBvLocation(l);
         TempData["message"] = string.Format("{0} has been saved", l.BvStoreNum);
         return(RedirectToAction("LocationIndex"));
     }
     else
     {
         return(View(l));
     }
 }