Esempio n. 1
0
        public ActionResult Edit(Guid id)
        {
            var model = _Service.FindView(id);

            if (model == null)
            {
                return(HttpNotFound());
            }

            ViewBag.ProfileList = _ProfileService.GetDropListProfileNull(model.ProfileTableId);
            return(View(model));
        }