Exemplo n.º 1
0
 /**
  * (non-Javadoc)
  *
  * @see
  *     com.deppon.crm.module.marketing.server.service.IMapService#searchUsersCount(com.deppon.crm.module.marketing.shared.domain.MapQueryCondition)
  */
 @Override
 public int searchUsersCount(MapQueryCondition condition) {
   return mapDao.searchUsersCount(condition);
 }
Exemplo n.º 2
0
 /**
  * (non-Javadoc)
  *
  * @see
  *     com.deppon.crm.module.marketing.server.service.IMapService#updateCustomerLocation(com.deppon.crm.module.marketing.shared.domain.CustomerLocation)
  */
 @Override
 public boolean updateCustomerLocation(CustomerLocation customerLocation) {
   return mapDao.updateCustomerLocation(customerLocation);
 }
Exemplo n.º 3
0
 /**
  * (non-Javadoc)
  *
  * @see
  *     com.deppon.crm.module.marketing.server.service.IMapService#isCustomerLocationExist(com.deppon.crm.module.marketing.shared.domain.CustomerLocation)
  */
 @Override
 public boolean isCustomerLocationExist(CustomerLocation customerLocation) {
   return mapDao.isCustomerLocationExist(customerLocation);
 }
Exemplo n.º 4
0
 /**
  * (non-Javadoc)
  *
  * @see
  *     com.deppon.crm.module.marketing.server.service.IMapService#insertCustomerLocation(com.deppon.crm.module.marketing.shared.domain.CustomerLocation)
  */
 @Override
 public boolean insertCustomerLocation(CustomerLocation customerLocation) {
   return mapDao.insertCustomerLocation(customerLocation);
 }
Exemplo n.º 5
0
 /**
  * (non-Javadoc)
  *
  * @see
  *     com.deppon.crm.module.marketing.server.service.IMapService#searchUsers(com.deppon.crm.module.marketing.shared.domain.MapQueryCondition,
  *     int, int)
  */
 @Override
 public List<MapView> searchUsers(MapQueryCondition condition, int start, int limit) {
   return mapDao.searchUsers(condition, start, limit);
 }