refactor(learning): split learning capability services
This commit is contained in:
@@ -8,7 +8,13 @@ internal static class LearningModule
|
||||
{
|
||||
internal static IServiceCollection AddLearningModule(this IServiceCollection services)
|
||||
{
|
||||
services.AddScoped<ILearningActivityService, LearningActivityService>();
|
||||
services.AddScoped<LearningServiceDependencies>();
|
||||
services.AddScoped<ILearningAnalyticsService, LearningAnalyticsService>();
|
||||
services.AddScoped<IAnsweringService, AnsweringService>();
|
||||
services.AddScoped<IQuestionReviewService, QuestionReviewService>();
|
||||
services.AddScoped<IWordLearningService, WordLearningService>();
|
||||
services.AddScoped<IPracticeSessionService, PracticeSessionService>();
|
||||
services.AddScoped<IPracticeReportService, PracticeReportService>();
|
||||
return services;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user