Example #1
0
        public ActionResult Editdata1(int Id)
        {
            try
            {
                ViewBag.Saved = false;
                Models.TaxTitleModel data = new TaxTitleModel()
                {
                    TaxTitleId = 0
                };

                CLayer.TaxTitle staycategory = BLayer.TaxTitle.Get(Id);

                if (staycategory != null)
                {
                    data = new Models.TaxTitleModel()
                    {
                        TaxTitleId = staycategory.TaxTitleId,
                        Title      = staycategory.Title,
                        Status     = staycategory.Status
                    }
                }
                ;
                return(PartialView("~/Areas/Admin/Views/TaxTitle/_Edit.cshtml", data));
            }
            catch (Exception ex)
            {
                Common.LogHandler.HandleError(ex);
                return(Redirect("~/Admin/ErrorPage"));
            }
        }
Example #2
0
        public ActionResult Editdata1(Models.TaxTitleModel data)
        {
            try
            {
                if (ModelState.IsValid)
                {
                    CLayer.TaxTitle Ttitle = new CLayer.TaxTitle()
                    {
                        TaxTitleId = data.TaxTitleId,
                        Title      = data.Title,
                        Status     = data.Status
                    };
                    BLayer.TaxTitle.Save(Ttitle);

                    ViewBag.Saved = true;
                }
                else
                {
                    ViewBag.Saved = false;
                }
                return(RedirectToAction("Index"));
            }
            catch (Exception ex)
            {
                Common.LogHandler.HandleError(ex);
                return(Redirect("~/Admin/ErrorPage"));
            }
        }