public SeanceService(SeanceDAO seanceDAO, EntraineurDAO entraineurDAO, SalleDAO salleDAO, ActiviteDAO activiteDAO, InscriptionDAO inscriptionDAO) { if (seanceDAO == null) { throw new ServiceException("Le DAO ne peut être null."); } if (entraineurDAO == null) { throw new ServiceException("Le DAO ne peut être null."); } if (salleDAO == null) { throw new ServiceException("Le DAO ne peut être null."); } if (activiteDAO == null) { throw new ServiceException("Le DAO ne peut être null."); } if (inscriptionDAO == null) { throw new ServiceException("Le DAO ne peut être null."); } this.seanceDAO = seanceDAO; this.entraineurDAO = entraineurDAO; this.salleDAO = salleDAO; this.activiteDAO = activiteDAO; this.inscriptionDAO = inscriptionDAO; }
public SalleService(SalleDAO salleDAO) { if (salleDAO == null) { throw new ServiceException("Le DAO ne peut être null."); } this.salleDAO = salleDAO; }