Exemple #1
0
        public ActionResult ItemsTypePartialDelete(System.String Code)
        {
            var model = new object[0];

            if (Code != null)
            {
                try
                {
                    // Insert here a code to delete the item from your model
                    ItemTypeList.DeleteItemType(Code);
                }
                catch (Exception e)
                {
                    ViewData["EditError"] = e.Message;
                }
            }
            return(PartialView("_ItemsTypePartial", ItemTypeList.GetData()));
        }
Exemple #2
0
        public ActionResult ItemsTypePartialUpdate(MVC.Areas.Item.Models.APIItemType item)
        {
            var model = new object[0];

            if (ModelState.IsValid)
            {
                try
                {
                    // Insert here a code to update the item in your model
                    ItemTypeList.UpdateItemType(item);
                }
                catch (Exception e)
                {
                    ViewData["EditError"] = e.Message;
                }
            }
            else
            {
                ViewData["EditError"] = "Please, correct all errors.";
            }
            return(PartialView("_ItemsTypePartial", ItemTypeList.GetData()));
        }
Exemple #3
0
        public ActionResult ItemsTypePartial()
        {
            var model = new object[0];

            return(PartialView("_ItemsTypePartial", ItemTypeList.GetData()));
        }