public ActionResult Edit(Guid id, ExternalMethodModel model, string button)
        {
            using (DBEntities context = Settings.CreateDataContext())
            {
                Validate(context, model);

                if (!ModelState.IsValid)
                {
                    return(View(model));
                }

                ExternalMethod target = null;
                if (model.Id != Guid.Empty)
                {
                    target = ExternalMethodHelper.Get(model.Id, context);
                    if (target == null)
                    {
                        ModelState.AddModelError("", Resources.Resource.RowNotFound);
                        return(View(model));
                    }
                }
                else
                {
                    ModelState.AddModelError("", "Запись не найдена!");
                    target    = new ExternalMethod();
                    target.Id = Guid.NewGuid();
                    context.AddToExternalMethod(target);
                }

                target.Name       = model.Name;
                target.MethodName = model.MethodName;
                target.ClassName  = model.ClassName;
                target.UsingText  = model.UsingText;
                target.CodeText   = model.CodeText;

                try
                {
                    context.SaveChanges();
                }
                catch (Exception ex)
                {
                    var sb = new StringBuilder(Resources.Resource.SaveError + ": " + ex.Message);
                    if (ex.InnerException != null)
                    {
                        sb.AppendLine(ex.InnerException.Message);
                    }
                    ModelState.AddModelError("", sb.ToString());
                    return(View(model));
                }

                if (button == "SaveAndExit")
                {
                    return(RedirectToAction("Index"));
                }
                else
                {
                    return(RedirectToAction("Edit", new { target.Id }));
                }
            }
        }
        public ActionResult Edit(Guid?id)
        {
            if (id.HasValue)
            {
                ExternalMethod obj = ExternalMethodHelper.Get(id.Value);
                if (obj == null)
                {
                    return(MessageHelper.FormedContentObjectNotFound());
                }

                Mapper.CreateMap <ExternalMethod, ExternalMethodModel>();
                ExternalMethodModel model = Mapper.Map <ExternalMethod, ExternalMethodModel>(obj);
                return(View(model));
            }
            else
            {
                return(View(new ExternalMethodModel()
                {
                    ClassName = "Project",
                    MethodName = "Method1"
                }));
            }
        }
 private void Validate(DBEntities context, ExternalMethodModel model)
 {
     //string res = ExternalMethodValidator.CheckTableName(context, model.Id, model.TableName);
     //if (res.Length > 0)
     //    ModelState.AddModelError("TableName", res);
 }