예제 #1
0
 public ActionResult Edit(long id)
 {
     Models.HSNCodeModel model = new Models.HSNCodeModel();
     try
     {
         CLayer.HSNCode data = BLayer.HSNCode.Get(id);
         if (data == null)
         {
             model.CodeId = 0;
             return(View("_Edit", model));
         }
         model.CodeId          = data.CodeId;
         model.NatureOfService = data.NatureOfService;
         model.HSNCode         = data.Code;
     }
     catch (Exception ex)
     {
         Common.LogHandler.HandleError(ex);
     }
     return(View("_Edit", model));
 }
예제 #2
0
        public ActionResult Save(Models.HSNCodeModel model)
        {
            try
            {
                if (ModelState.IsValid)
                {
                    CLayer.HSNCode data = new CLayer.HSNCode();
                    long           cid  = 0;
                    long.TryParse(User.Identity.GetUserId(), out cid);
                    data.CodeId          = model.CodeId;
                    data.NatureOfService = model.NatureOfService;
                    data.Code            = model.HSNCode;

                    BLayer.HSNCode.Save(data);
                }
            }
            catch (Exception ex)
            {
                Common.LogHandler.HandleError(ex);
            }
            return(RedirectToAction("Index"));
        }
예제 #3
0
 public ActionResult Index()
 {
     Models.HSNCodeModel model = new Models.HSNCodeModel();
     model.CodeId = 0;
     return(View(model));
 }