public ActionResult Edicao(int id) { FormaPagamentoPersistence fpp = new FormaPagamentoPersistence(); FormaPagamento fp = fpp.ObterPorId(id); ViewBag.Id = id; ViewBag.Descricao = fp.Descricao; ViewBag.Status = fp.Status; return(View()); }
public JsonResult Excluir(int id) { var msg = ""; try { FormaPagamentoPersistence fpp = new FormaPagamentoPersistence(); FormaPagamento fp = new FormaPagamento(); fp = fpp.ObterPorId(id); fpp.Excluir(fp); msg = "A Forma de Pagamento <strong>" + fp.Descricao + "</strong> foi excluída com sucesso!"; } catch (Exception ex) { return(Json(ex.Message, JsonRequestBehavior.AllowGet)); } return(Json(msg, JsonRequestBehavior.AllowGet)); }
public JsonResult Editar(FormaPagamentoViewModelEdicao model) { var _cod = -1; var _msg = ""; try { FormaPagamentoPersistence fpp = new FormaPagamentoPersistence(); FormaPagamento fp = fpp.ObterPorId(model.Id); fp.Descricao = model.Descricao; fp.Status = model.Status; fpp.Atualizar(fp); _cod = 1; _msg = "A Forma de Pagamento <strong>" + model.Descricao + "</strong> foi editada com sucesso!"; } catch (Exception ex) { _msg = ex.Message; } return(Json(new { cod = _cod, msg = _msg }, JsonRequestBehavior.AllowGet)); }