{
JSONObject jsonChannel = jsonSale.getJSONObject("channel");
JSONObject jsonProduct = jsonSale.getJSONObject("product");
JSONObject jsonCustomer = jsonSale.getJSONObject("customer");
Channel c = new Channel();
c.setId(jsonChannel.getInt("channelId"));
c.setDescription(jsonChannel.getString("channelDesc"));
Product p = new Product();
p.setId(jsonProduct.getInt("prodId"));
p.setName(jsonProduct.getString("prodName"));