public BootcampSessionController(IBootcampRepository bootcampRepo, 
     ILocationRepository locationRepo, 
     ITechnologyRepository techRepo, 
     IBootcampSessionRepository bootcampSessionRepo, 
     IBootcampLocationsRepository bootcampLocationsRepo, 
     IBootcampTechnologyRepository bootcampTechRepo)
 {
     _bootcampRepo = bootcampRepo;
     _locationRepo = locationRepo;
     _techRepo = techRepo;
     _bootcampSessionRepo = bootcampSessionRepo;
     _bootcampLocationsRepo = bootcampLocationsRepo;
     _bootcampTechRepo = bootcampTechRepo;
 }
 public BootcampSessionController(IBootcampRepository bootcampRepo,
                                  ILocationRepository locationRepo,
                                  ITechnologyRepository techRepo,
                                  IBootcampSessionRepository bootcampSessionRepo,
                                  IBootcampLocationsRepository bootcampLocationsRepo,
                                  IBootcampTechnologyRepository bootcampTechRepo)
 {
     _bootcampRepo          = bootcampRepo;
     _locationRepo          = locationRepo;
     _techRepo              = techRepo;
     _bootcampSessionRepo   = bootcampSessionRepo;
     _bootcampLocationsRepo = bootcampLocationsRepo;
     _bootcampTechRepo      = bootcampTechRepo;
 }
Пример #3
0
 public BootcampController(IBootcampRepository bootcampRepo,
                           ITechnologyRepository technologyRepo,
                           ILocationRepository locationRepo,
                           IBootcampLocationsRepository bootcampLocationsRepo,
                           IBootcampTechnologyRepository bootcampTechnologyRepo,
                           ILinkRepository linkRepo,
                           IBootcampSessionRepository sessionRepo,
                           ISiteRepository siteRepo)
 {
     _bootcampRepo           = bootcampRepo;
     _technologyRepo         = technologyRepo;
     _locationRepo           = locationRepo;
     _bootcampLocationsRepo  = bootcampLocationsRepo;
     _bootcampTechnologyRepo = bootcampTechnologyRepo;
     _linkRepo    = linkRepo;
     _sessionRepo = sessionRepo;
     _siteRepo    = siteRepo;
 }
Пример #4
0
 public BootcampController(IBootcampRepository bootcampRepo, 
     ITechnologyRepository technologyRepo, 
     ILocationRepository locationRepo, 
     IBootcampLocationsRepository bootcampLocationsRepo, 
     IBootcampTechnologyRepository bootcampTechnologyRepo, 
     ILinkRepository linkRepo, 
     IBootcampSessionRepository sessionRepo, 
     ISiteRepository siteRepo)
 {
     _bootcampRepo = bootcampRepo;
     _technologyRepo = technologyRepo;
     _locationRepo = locationRepo;
     _bootcampLocationsRepo = bootcampLocationsRepo;
     _bootcampTechnologyRepo = bootcampTechnologyRepo;
     _linkRepo = linkRepo;
     _sessionRepo = sessionRepo;
     _siteRepo = siteRepo;
 }