public ActionResult Create(FormCollection collection)
 {
     try
     {
         // TODO: Add insert logic here
         var model = new JobInterview();
         TryUpdateModel(model);
         model.CreateBy = SessionItems.CurrentUser.UserID;
         model.CreateAt = DateTime.Now;
         model.Insert();
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }