[
  {
    "id": 1,
    "customerName": "Pedro Raul",
    "ammount": 15.7,
    "tax": 1.2,
    "total": 16.9,
    "detail": [
      {
        "id": 1,
        "invoiceId": 1,
        "productCode": "GLSTC-1",
        "description": "Transparent glass brand crysa",
        "quantity": 10,
        "unitPrice": 0.45,
        "ammount": 4.5
      },
      {
        "id": 2,
        "invoiceId": 1,
        "productCode": "GLSTC-2",
        "description": "Transparent glass brand crew",
        "quantity": 10,
        "unitPrice": 1.12,
        "ammount": 11.2
      }
    ]
  },
  {
    "id": 2,
    "customerName": "Juan Alberto Ramirez",
    "ammount": 25.6,
    "tax": 2.1,
    "total": 27.7,
    "detail": [
      {
        "id": 3,
        "invoiceId": 2,
        "productCode": "CBLUSB-1",
        "description": "USB CABLE 3ft",
        "quantity": 10,
        "unitPrice": 0.75,
        "ammount": 7.5
      },
      {
        "id": 4,
        "invoiceId": 2,
        "productCode": "CBLHDMI-1",
        "description": "HDMI Cable 10ft",
        "quantity": 10,
        "unitPrice": 1.81,
        "ammount": 18.1
      }
    ]
  }
]