コード例 #1
0
 public ApplicationBusinessTypeVM(ApplicationBusinessType bo)
 {
     this.ID          = bo.ID;
     this.Name        = bo.Name;
     this.Description = bo.Description;
     this.SortCode    = bo.SortCode;
 }
コード例 #2
0
        public ActionResult CreateOrEdit(Guid id)
        {
            bool isNew = false;
            var  bo    = _Service.GetSingle(id);

            if (bo == null)
            {
                bo    = new ApplicationBusinessType();
                bo.ID = id;
                isNew = true;
            }
            var boVM   = new ApplicationBusinessTypeVM(bo);
            var editor = PageComponentRepository <ApplicationBusinessTypeVM> .CreateOrEditDialog(boVM, isNew);

            return(Json(editor));
        }
コード例 #3
0
        public ActionResult Save(ApplicationBusinessTypeVM boVM)
        {
            if (ModelState.IsValid)
            {
                var bo = _Service.GetSingle(boVM.ID);
                if (bo == null)
                {
                    bo    = new ApplicationBusinessType();
                    bo.ID = boVM.ID;
                }

                boVM.MapToBo(bo);
                _Service.AddOrEditAndSave(bo);

                return(Json(PageComponentRepository <ApplicationBusinessTypeVM> .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 <ApplicationBusinessTypeVM> .UpdateCreateOrEditDialog(boVM, false, vItems).InnerHtmlContent;

                return(Json(editor));
            }
        }
コード例 #4
0
 public void MapToBo(ApplicationBusinessType bo)
 {
     bo.Name        = this.Name;
     bo.Description = this.Description;
     bo.SortCode    = this.SortCode;
 }