// GET: HealthLoanDecision/Delete/5
        public ActionResult Delete(Nullable <int> id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }

            Db db = new Db(DbServices.ConnectionString);
            HealthLoanDecision healthLoanDecision = HealthLoanDecisionServices.Get(id.Value, db);

            if (healthLoanDecision == null)
            {
                return(HttpNotFound());
            }
            return(View(healthLoanDecision));
        }
        public ActionResult Create([Bind(Include = "Id, Number, Year, Date, CersNumber, CersDate, PaymentNumber, PaymentDate, Notes")] HealthLoanDecision healthLoanDecision)
        {
            Db db = new Db(DbServices.ConnectionString);

            if (ModelState.IsValid)
            {
                try
                {
                    HealthLoanDecisionServices.Insert(CurrentUser.Id, healthLoanDecision, db);
                    TempData["Success"] = ResourceServices.GetString(Cf.Data.Resources.ResourceBase.Culture, "UI", "InsertConfirmed");
                    return(RedirectToAction("Index"));
                }
                catch (CfException cfex)
                {
                    TempData["Failure"] = cfex.ErrorDefinition.LocalizedMessage;
                }
                catch (Exception ex)
                {
                    TempData["Failure"] = ex.Message;
                }
            }

            return(View(healthLoanDecision));
        }