Ejemplo n.º 1
0
 public int getDefarysByShop(int shopId, int state) {
   if (shopId != 0) {
     return defaryDao.getPropertyCount(
         new String[] {DefrayDAO.SHOP_ID, DefrayDAO.STATE}, new Integer[] {shopId, state});
   } else {
     return defaryDao.getPropertyCount(new String[] {DefrayDAO.STATE}, new Integer[] {state});
   }
 }