Examples of PayerDTO


Examples of com.mustafaiev.tair.cts.dto.PayerDTO

    }
  }

  public boolean isPayerExists(final String email)
      throws DataNotRetrievedException {
    final PayerDTO dto = findPayer(email);
    return dto != null;
  }
View Full Code Here

Examples of com.mustafaiev.tair.cts.dto.PayerDTO

  @Override
  public PayerDTO findPayer(final String payerId)
      throws DataNotRetrievedException {
    final Payer payer = this.payerDao.findByEmail(payerId);
    PayerDTO dto = null;
    if (payer != null) {
      dto = this.mapper.map(payer, PayerDTO.class);
      dto.setId(payer.getId());
    }
    return dto;
  }
View Full Code Here

Examples of com.mustafaiev.tair.cts.dto.PayerDTO

  @Override
  public PayerDTO retrieveActiveByEmail(final String email)
      throws DataNotRetrievedException {
    final Payer payer = this.payerDao.findActiveByEmail(email.trim());
    PayerDTO dto = null;
    if (payer != null) {
      dto = this.mapper.map(payer, PayerDTO.class);
      dto.setId(payer.getId());
    }
    return dto;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.