Exemplo n.º 1
0
        public ActionResult AjaxForm()
        {
            var enterprises = new DN_Enterprises();

            if (DoAction == ActionType.Edit)
            {
                enterprises = _enterprisesDa.GetById(ArrId.FirstOrDefault());
            }
            ViewBag.ST_Group   = _stGroupDa.GetAll();
            ViewBag.BonusType  = _bonusTypeDa.GetItemTop();
            ViewData.Model     = enterprises;
            ViewBag.Action     = DoAction;
            ViewBag.ActionText = ActionText;
            return(View());
        }
Exemplo n.º 2
0
        public ActionResult AjaxForm()
        {
            var moduleModel = new DN_Module
            {
                IsShow   = true,
                IsAll    = true,
                Ord      = 0,
                ParentID = (ArrId.Any()) ? ArrId.FirstOrDefault() : 1
            };

            if (DoAction == ActionType.Edit)
            {
                moduleModel = _moduleDa.GetByID(ArrId.FirstOrDefault());
            }
            ViewBag.Group      = _groupDa.GetAll();
            ViewBag.PrarentID  = _moduleDa.GetListItemByParentID();
            ViewData.Model     = moduleModel;
            ViewBag.Action     = DoAction;
            ViewBag.ActionText = ActionText;
            return(View());
        }