Will Be Used To create Method To Add/Update/Delete Data On The Go.
boolean updateStyle = false;
Integer mstProductUniqueid = Integer.parseInt(dbUtils.getMaxId("mst_product_style", "uniqueid", " where productid="+productid+""));
for (int index1 = 0; index1 < dto.getStyle().size(); index1++) {
MstProductStyle mstProductStyle = null,prevMstProductStyle;
updateStyle = false;
if ((!storedProductStyle.isEmpty()) || (!(storedProductStyle.size() < 1))) {
Integer mstProductUniqueid1 = 0;
for (int index2 = 0; index2 < storedProductStyle.size(); index2++) {
Object[] dbdata = storedProductStyle.get(index2);
if (textEncryptDecrypt.decrypt(dto.getStyle().get(index1)).equals(dbdata[0].toString())) {