private void SaveReg() { GTI_Models.Models.Lancamento reg = new GTI_Models.Models.Lancamento { Descfull = txtCompleto.Text, Descreduz = txtResumido.Text, Tipolivro = Convert.ToInt16(cmbLivro.SelectedValue) }; Tributario_bll clsTributario = new Tributario_bll(_connection); Exception ex; if (bAddNew) { ex = clsTributario.Insert_Lancamento(reg); } else { reg.Codlancamento = Convert.ToInt16(lstMain.SelectedValue); ex = clsTributario.Alterar_Lancamento(reg); } if (ex != null) { ErrorBox eBox = new ErrorBox("Atenção", ex.Message, ex); eBox.ShowDialog(); } else { Carrega_Lista(); ControlBehaviour(true); } }
public JsonResult Incluir_Lancamento(string nomeC, string nomeR) { Lancamento reg = new Lancamento() { Descfull = nomeC.ToUpper(), Descreduz = nomeR.ToUpper() }; Tributario_bll tributarioRepository = new Tributario_bll(_connection); Exception ex = tributarioRepository.Insert_Lancamento(reg); var result = new { Success = "True" }; return(new JsonResult { Data = result, JsonRequestBehavior = JsonRequestBehavior.AllowGet }); }