public ActionResult Contract_Update(decimal contractId) { var contractBl = new ContractBL(); Contract contract = new Contract(); try { contract = contractBl.GetById(contractId); } catch (Exception ex) { NaviCommon.Common.log.Error(ex.ToString()); } return(View("~/Areas/ModuleImport/Views/Contract/Contract_Update.cshtml")); }