public oFacturas.Factura factura(string id) { string json = Conexion.httpGet("facturas", id); json = json.Substring(3); oFacturas.Factura factura = JsonConvert.DeserializeObject <oFacturas.Factura>(json); return(factura); }
public string putfactura(string id, string numero_factura, string fecha, string cliente_id, string tipo_factura, string forma_pago, string descuento, string subtotal, string total, string plazo_maximo, string observaciones, List <oFacturas.DetalleFactura> detalleFactura) { oFacturas.Factura factura = new oFacturas.Factura { numero_factura = numero_factura, fecha = fecha, cliente_id = cliente_id, tipo_factura = tipo_factura, forma_pago = forma_pago, descuento = descuento, subtotal = subtotal, total = total, plazo_maximo = plazo_maximo, observaciones = observaciones, detalleFactura = detalleFactura }; string mensaje = Conexion.httpPut("facturas", id, factura); return(mensaje); }