@Override
 public List<AuthorizationPreliminaryExam> getAuthorizationPreliminaryExams(
     UserId userId, TldServiceFacade tld) throws ServiceException {
   return tld.getServiceProvider()
       .getAuthorizationPreliminaryExamService()
       .getAuthorizationPreliminaryExams(userId, tld);
 }
 @Override
 public List<AuthorizationPreliminaryExam> getPendingAuthorizationPreliminaryExamWithDomainName(
     String domainName, UserId userId, TldServiceFacade tld) throws ServiceException {
   return tld.getServiceProvider()
       .getAuthorizationPreliminaryExamService()
       .getPendingAuthorizationPreliminaryExamWithDomainName(domainName, userId, tld);
 }
 @Override
 public AuthorizationPreliminaryExam getAuthorizationPreliminaryExamWithId(
     int id, UserId userId, TldServiceFacade tld) throws ServiceException {
   return tld.getServiceProvider()
       .getAuthorizationPreliminaryExamService()
       .getAuthorizationPreliminaryExamWithId(id, userId, tld);
 }
 @Override
 public CorporateEntity getCorporateEntity(String id, UserId userId, TldServiceFacade tld)
     throws ServiceException {
   return tld.getServiceProvider()
       .getPublicLegalStructureService()
       .getCorporateEntity(id, userId, tld);
 }
 @Override
 public CorporateEntity getCorporateEntity(
     CorporateEntityIdentifier legalStructureIdentifier, UserId userId, TldServiceFacade tld)
     throws ServiceException {
   return tld.getServiceProvider()
       .getPublicLegalStructureService()
       .getCorporateEntity(legalStructureIdentifier, userId, tld);
 }
 @Override
 public AuthorizationPreliminaryExam updateAuthorizationPreliminaryExam(
     AuthorizationPreliminaryExam authorizationPreliminaryExam,
     UserId userId,
     TldServiceFacade tld)
     throws ServiceException {
   return tld.getServiceProvider()
       .getAuthorizationPreliminaryExamService()
       .updateAuthorizationPreliminaryExam(authorizationPreliminaryExam, userId, tld);
 }
 @Override
 public void delete(AuthorizationPreliminaryExam exam, UserId userId, TldServiceFacade tld)
     throws ServiceException {
   tld.getServiceProvider().getAuthorizationPreliminaryExamService().delete(exam, userId, tld);
 }