public ActionResult Detail(Guid id) { var bo = _Service.GetSingle(id); var boVM = new FileTypeVM(bo); var detail = PageComponentRepository <FileTypeVM> .DetailDialog(boVM); return(Json(detail)); }
public ActionResult CreateOrEdit(Guid id) { bool isNew = false; var bo = _Service.GetSingle(id); if (bo == null) { bo = new FileType(); bo.ID = id; isNew = true; } var boVM = new FileTypeVM(bo); var editor = PageComponentRepository <FileTypeVM> .CreateOrEditDialog(boVM, isNew); return(Json(editor)); }
public ActionResult Index() { var boCollection = _Service.GetAll().OrderBy(s => s.SortCode); var boVMCollection = new List <FileTypeVM>(); var count = 0; foreach (var bo in boCollection) { var boVM = new FileTypeVM(bo); boVM.OrderNumber = (++count).ToString(); boVMCollection.Add(boVM); } var pageModel = PageModelRepository <FileTypeVM> .GetPageMode(boVMCollection, null, null); return(View("../../Views/Admin/Common/Index", pageModel)); }
public ActionResult List() { var boCollection = _Service.GetAll().OrderBy(s => s.SortCode); var boVMCollection = new List <FileTypeVM>(); var count = 0; foreach (var bo in boCollection) { var boVM = new FileTypeVM(bo); boVM.OrderNumber = (++count).ToString(); boVMCollection.Add(boVM); } var pageModel = PageModelRepository <FileTypeVM> .PageUpdate(boVMCollection, null, null); return(Json(pageModel)); }
public ActionResult Save(FileTypeVM boVM) { if (ModelState.IsValid) { var bo = _Service.GetSingle(boVM.ID); if (bo == null) { bo = new FileType(); bo.ID = boVM.ID; } boVM.MapToBo(bo); _Service.AddOrEditAndSave(bo); return(Json(PageComponentRepository <FileTypeVM> .SaveOK(true, "1", ""))); } else { var vItems = new List <ValidatorResult>(); foreach (var item in ModelState) { if (item.Value.Errors != null) { foreach (var vItem in item.Value.Errors) { var errItem = new ValidatorResult(); errItem.Name = item.Key; errItem.ErrorMessage = vItem.ErrorMessage; vItems.Add(errItem); } } } var editor = PageComponentRepository <FileTypeVM> .UpdateCreateOrEditDialog(boVM, false, vItems).InnerHtmlContent; return(Json(editor)); } }