public JObject SalvarCartao(string objCartao) { JObject obj = new JObject(); JArray arr = JArray.Parse(objCartao); CartaoCreditoDAL carDAL = new CartaoCreditoDAL(db); string compra = arr[0].Value <string>("Compra").ToString(); string valormes = arr[0].Value <decimal>("Valor_Mes").ToString(); string parcelas = arr[0].Value <int>("Parcelas").ToString(); string total = arr[0].Value <decimal>("Total").ToString(); string codigovigencia = arr[0].Value <int>("Codigo_Vigencia_Cartao").ToString(); string codigousuario = arr[0].Value <int>("Codigo_Usuario_Cartao").ToString(); MLL.CartaoCredito cartao = new MLL.CartaoCredito { Compra = compra, Valor_Mes = Convert.ToDecimal(valormes), Parcelas = Convert.ToInt32(parcelas), Total = Convert.ToDecimal(total), Codigo_Vigencia = Convert.ToInt32(codigovigencia), Codigo_Usuario = Convert.ToInt32(codigousuario) }; if (carDAL.Adicionar(cartao)) { obj.Add(new JProperty("ok", "ok")); } else { obj.Add(new JProperty("erro", carDAL.erro)); } return(obj); }
public JObject CarregarCartaoCredito(int codigo) { JObject obj = new JObject(); JArray arr = new JArray(); CartaoCreditoDAL carDAL = new CartaoCreditoDAL(db); MLL.CartaoCredito car = carDAL.obtemPorId(codigo); if (!object.Equals(car, null)) { arr.Add(new JObject( new JProperty("Codigo_Cartao_Credito", car.Codigo_Cartao_Credito), new JProperty("Compra", car.Compra), new JProperty("Valor_Mes", car.Valor_Mes), new JProperty("Parcelas", car.Parcelas), new JProperty("Total", car.Total), new JProperty("Codigo_Vigencia_Cartao", car.Codigo_Vigencia), new JProperty("Codigo_Usuario_Cartao", car.Codigo_Usuario) )); obj.Add(new JProperty("listaCartao", arr)); } else { obj.Add(new JProperty("erro", carDAL.erro)); } return(obj); }
public string ExcluirCartaoCredito(int codigo) { CartaoCreditoBLL carBLL = new CartaoCreditoBLL(); MLL.CartaoCredito cartao = carBLL.ObterPorId(codigo); return(carBLL.ExcluirCartao(cartao).ToString()); }
public string ExcluirCartao(MLL.CartaoCredito cartao) { string result = ""; CartaoCreditoDAL carDAL = new CartaoCreditoDAL(db); if (carDAL.Remover(cartao)) { result = "ok"; } else { result = "erro - " + carDAL.erro; } return(result); }