public ActionResult Create(Product newProduct, FormCollection collection)
 {
     try
     {
         // TODO: Add insert logic here
         _workHistory.AddProduct(newProduct);
         return(RedirectToAction("Index", new { productCategory = "all" }));
     }
     catch
     {
         return(View());
     }
 }