public JObject CarregarDespesa(int codDespesa) { JObject obj = new JObject(); JArray arr = new JArray(); DespesaDAL desDAL = new DespesaDAL(db); MLL.Despesa despesa = desDAL.obtemPorId(codDespesa); if (!object.Equals(despesa, null)) { arr.Add(new JObject( new JProperty("Codigo_Despesa", despesa.Codigo_Despesa), new JProperty("Descricao_Despesa", despesa.Descricao_Despesa), new JProperty("Valor_Despesa", despesa.Valor_Despesa), new JProperty("Status_Despesa", despesa.Status.Description()), new JProperty("Forma_Pagamento_Despesa", despesa.Codigo_Pagamento), new JProperty("Codigo_Vigencia_Despesa", despesa.Codigo_Vigencia), new JProperty("Codigo_Usuario_Despesa", despesa.Codigo_Usuario) )); obj.Add(new JProperty("listaDespesa", arr)); } else { obj.Add(new JProperty("erro", desDAL.erro)); } return(obj); }
public MLL.Despesa ObterPorId(int codigo) { DespesaDAL desDAL = new DespesaDAL(db); return(desDAL.obtemPorId(codigo)); }