public ActionResult DeficiencyReport(DeficiencyReportVM model)
        {
            if (!ModelState.IsValid)
                return View(model);

            return View(model);
        }
 public ActionResult DeficiencyReport(int PermitKey)
 {
     DeficiencyReportVM model = new DeficiencyReportVM(PermitKey, myCoalUser.UserToken);
     return View(model);
 }