public BootcampTechnologyController(IBootcampTechnologyRepository bootcampTechRepo, 
     ITechnologyRepository techRepo, 
     IBootcampRepository bootcampRepo)
 {
     _bootcampTechRepo = bootcampTechRepo;
     _techRepo = techRepo;
     _bootcampRepo = bootcampRepo;
 }
Example #2
0
 public BootcampTechnologyController(IBootcampTechnologyRepository bootcampTechRepo,
                                     ITechnologyRepository techRepo,
                                     IBootcampRepository bootcampRepo)
 {
     _bootcampTechRepo = bootcampTechRepo;
     _techRepo         = techRepo;
     _bootcampRepo     = bootcampRepo;
 }
 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;
 }
Example #4
0
 public HomeController(IContactFormRepository contactFromRepo, 
     IBootcampRepository bootcampRepo, 
     ITechnologyRepository technologyRepo, 
     ILocationRepository locationRepo, 
     IBootcampLocationsRepository bootcampLocationsRepo, 
     IBootcampTechnologyRepository bootcampTechnologyRepo)
 {
     _contactFormRepo = contactFromRepo;
     _bootcampRepo = bootcampRepo;
     _technologyRepo = technologyRepo;
     _locationRepo = locationRepo;
     _bootcampLocationsRepo = bootcampLocationsRepo;
     _bootcampTechnologyRepo = bootcampTechnologyRepo;
 }
 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;
 }
Example #6
0
 public HomeController(IContactFormRepository contactFromRepo, 
     IBootcampRepository bootcampRepo, 
     ITechnologyRepository technologyRepo, 
     ILocationRepository locationRepo, 
     IBootcampLocationsRepository bootcampLocationsRepo, 
     IBootcampTechnologyRepository bootcampTechnologyRepo)
 {
     _contactFormRepo = contactFromRepo;
     _bootcampRepo = bootcampRepo;
     _technologyRepo = technologyRepo;
     _locationRepo = locationRepo;
     _bootcampLocationsRepo = bootcampLocationsRepo;
     _bootcampTechnologyRepo = bootcampTechnologyRepo;
 }
Example #7
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;
 }
 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;
 }