Example #1
0
 public ModuleEventsDeserializer(ICohortRepository cohortRepository,
                                 IModuleRepository moduleRepository,
                                 IStudiefaseService studiefaseService,
                                 ICompetentieService competentieService,
                                 IEindeisService eindeisService,
                                 IAuditLogEntryRepository auditLogRepository)
 {
     _cohortRepository   = cohortRepository;
     _moduleRepository   = moduleRepository;
     _studiefaseService  = studiefaseService;
     _competentieService = competentieService;
     _eindeisService     = eindeisService;
     _auditLogRepository = auditLogRepository;
 }
Example #2
0
 public GetAuditEntriesQueryHandler(IAuditLogEntryRepository auditLogEntryRepository, IUserRepository userRepository)
 {
     _auditLogEntryRepository = auditLogEntryRepository;
     _userRepository          = userRepository;
 }
Example #3
0
 public AuditLogEntryService(IAuditLogEntryRepository auditLogRepository) =>