Пример #1
0
 public ParseService(IStagevoorstelRepository voorstelRepo, IBedrijfRepository bedrijfRepo,
                     IStageopdrachtenRepository opdrachtRepo, ILectorRepository lectorRepo, IStudentRepository studentRepo)
 {
     _voorstelRepo = voorstelRepo;
     _bedrijfRepo  = bedrijfRepo;
     _opdrachtRepo = opdrachtRepo;
     _lectorRepo   = lectorRepo;
     _studentRepo  = studentRepo;
 }
 public StagevoorstellenController(IStagevoorstelRepository repo)
 {
     _repo = repo;
 }