Exemplo n.º 1
0
 public BootcampLocationController(IBootcampLocationsRepository bootcampLocationsRepo,
                                   IBootcampRepository bootcampRepo,
                                   ILocationRepository locationRepo)
 {
     _bootcampLocationsRepo = bootcampLocationsRepo;
     _bootcampRepo          = bootcampRepo;
     _locationRepo          = locationRepo;
 }
Exemplo n.º 2
0
 public BootcampsController(IBootcampRepository bootcampRepo,
                            ILocationRepository locationRepo,
                            ITechnologyRepository techRepo)
 {
     _bootcampRepo = bootcampRepo;
     _locationRepo = locationRepo;
     _techRepo     = techRepo;
 }
Exemplo n.º 3
0
 public BootcampsController(IBootcampRepository bootcampRepo, 
     ILocationRepository locationRepo, 
     ITechnologyRepository techRepo)
 {
     _bootcampRepo = bootcampRepo;
     _locationRepo = locationRepo;
     _techRepo = techRepo;
 }
 public BootcampLocationController(IBootcampLocationsRepository bootcampLocationsRepo, 
     IBootcampRepository bootcampRepo, 
     ILocationRepository locationRepo)
 {
     _bootcampLocationsRepo = bootcampLocationsRepo;
     _bootcampRepo = bootcampRepo;
     _locationRepo = locationRepo;
 }
Exemplo n.º 5
0
 public LinksController(ILinkRepository linkRepo,
                        IBootcampRepository bootcampRepo,
                        ISiteRepository siteRepo)
 {
     _linkRepo     = linkRepo;
     _bootcampRepo = bootcampRepo;
     _siteRepo     = siteRepo;
 }
 public BootcampTechnologyController(IBootcampTechnologyRepository bootcampTechRepo, 
     ITechnologyRepository techRepo, 
     IBootcampRepository bootcampRepo)
 {
     _bootcampTechRepo = bootcampTechRepo;
     _techRepo = techRepo;
     _bootcampRepo = bootcampRepo;
 }
Exemplo n.º 7
0
 public BootcampTechnologyController(IBootcampTechnologyRepository bootcampTechRepo,
                                     ITechnologyRepository techRepo,
                                     IBootcampRepository bootcampRepo)
 {
     _bootcampTechRepo = bootcampTechRepo;
     _techRepo         = techRepo;
     _bootcampRepo     = bootcampRepo;
 }
Exemplo n.º 8
0
 public LinksController(ILinkRepository linkRepo, 
     IBootcampRepository bootcampRepo, 
     ISiteRepository siteRepo)
 {
     _linkRepo = linkRepo;
     _bootcampRepo = bootcampRepo;
     _siteRepo = siteRepo;
 }
Exemplo n.º 9
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;
 }
Exemplo n.º 10
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;
 }
Exemplo n.º 11
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;
 }
Exemplo n.º 12
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;
 }
Exemplo n.º 13
0
 public AdminController(IBootcampRepository bootcampRepo)
 {
     _bootcampRepo = bootcampRepo;
 }
Exemplo n.º 14
0
 public AdminController(IBootcampRepository bootcampRepo)
 {
     _bootcampRepo = bootcampRepo;
 }