public LearningActivityEventsService(
     IStudentLearningEventLogCommands studentLearningEventLogCommands,
     IStudentInformationQueries studentInformationQueries,
     ILearningAppQueries learningAppQueries)
 {
     this._studentLearningEventLogCommands = studentLearningEventLogCommands;
     this._studentInformationQueries       = studentInformationQueries;
     this._learningAppQueries = learningAppQueries;
 }
Exemple #2
0
 public WhitelistController(ILearningAppQueries learningAppQueries)
 {
     this._learningAppQueries = learningAppQueries;
 }