@Override
 public Option<Address> findAddressByOwnerAndContactNumber(Integer ownerId, String contactNumber) {
   if (ownerId != null && isGlobalStore()) {
     return null;
   }
   return addressDAO.findAddressByOwnerAndCategoryAndContactNumber(
       ownerId, category, contactNumber);
 }