Package com.tll.common.dto

Examples of com.tll.common.dto.SiteStatisticsDto


  }

  @Override
  public SiteStatisticsPayload getSiteStatitics() {
    com.tll.service.entity.SiteStatisticsService sss = persistContext.getEntityServiceFactory().instance(com.tll.service.entity.SiteStatisticsService.class);
    SiteStatisticsDto dto = new SiteStatisticsDto();
    dto.numAddresses = sss.numAddresses();
    dto.numIsps = sss.numIsps();
    dto.numMerchants = sss.numMerchants();
    dto.numCustomers = sss.numCustomers();
    dto.numUsers = sss.numUsers();
View Full Code Here

TOP

Related Classes of com.tll.common.dto.SiteStatisticsDto

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.