public class ThirdPartyReqServiceImpl implements ThirdPartyReqService {

  private static final Logger log = LoggerFactory.getLogger(ThirdPartyReqServiceImpl.class);

  /** Singleton instance */
  protected static ObjectifyFactory factory = OfyService.factory();

  private ThirdPartyReqDAO thirdPartyReqDao = new ThirdPartyReqDAOImpl(factory);

  @Override
  public ThirdPartyReq getThirdPartyReq(String id) {

    return thirdPartyReqDao.getThirdPartyReq(id);
  }

  @Override
  public boolean update(ThirdPartyReq item) throws Exception {

    return thirdPartyReqDao.update(item);
  }

  @Override
  public List<ThirdPartyReq> getThirdPartyPendingReq() {

    return thirdPartyReqDao.getThirdPartyPendingReq();
  }
}