public JsonResult JsCreate(Projeto model) { try { LogBLL.Insert(new LogDado("JsCreate", "Projeto", _idUsuario)); using (var db = new Context()) { using (var trans = new RP.DataAccess.RPTransactionScope(db)) { var _bll = new BLL.ProjetoBLL(db, _idUsuario); _bll.Insert(model); _bll.SaveChanges(); trans.Complete(); return Json(new { model = model }, JsonRequestBehavior.AllowGet); } } } catch (Exception ex) { Response.StatusCode = 500; return Json(RP.Util.Exception.Message.Get(ex), JsonRequestBehavior.AllowGet); } }
public ActionResult Create(AprovarVM model) { if (string.IsNullOrEmpty(model.Vendedor.nome)) { ModelState.AddModelError("Vendedor.nome", "Selecione um vendedor"); } if (string.IsNullOrEmpty(model.Cliente.nome)) { ModelState.AddModelError("Cliente.nome", "Selecione um cliente"); } if (ModelState.IsValid) { try { LogBLL.Insert(new LogDado("Create", "Projeto", _idUsuario)); using (var db = new Context()) { using (var trans = new RP.DataAccess.RPTransactionScope(db)) { var _projeto = model.GetProjeto(); var _bll = new BLL.ProjetoBLL(db, _idUsuario); _bll.Insert(_projeto); _bll.SaveChanges(); trans.Complete(); model.idProjeto = _projeto.idProjeto; this.AddFlashMessage(RP.Util.Resource.Message.INSERT_SUCCESS, FlashMessage.SUCCESS); return RedirectToAction("Index"); } } } catch (Exception ex) { RP.Util.Entity.ErroLog.Add(ex, Session.SessionID, _idUsuario); return RedirectToAction("Index", "Erro", new { area = string.Empty }); } } return View(model); }