public StudieGidsController(IUnitOfWork unitOfWork, IExporterService <Competentie> competentieExporterService, IExporterService <Leerlijn> leerlijnExporterService, IExporterService <FaseType> lessenTabelExporterService)
 {
     _unitOfWork = unitOfWork;
     _competentieExporterService = competentieExporterService;
     _leerlijnExporterService    = leerlijnExporterService;
     _lessenTabelExporterService = lessenTabelExporterService;
 }
Example #2
0
 public ModuleController(IExporterService <Module> moduleExporterService, IFilterSorterService <Module> filterSorterService, IUnitOfWork unitOfWork)
 {
     _moduleExporterService = moduleExporterService;
     _filterSorterService   = filterSorterService;
     _unitOfWork            = unitOfWork;
 }