public ActionResult Create(WorkDay newWorkDay, FormCollection collection)
 {
     try
     {
         // TODO: Add insert logic here
         _workHistory.AddDay(newWorkDay);
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }