15 lines
400 B
C#
15 lines
400 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using Tiku.Application.Learning;
|
|
using Tiku.Infrastructure.Learning;
|
|
|
|
namespace Tiku.Infrastructure;
|
|
|
|
internal static class LearningModule
|
|
{
|
|
internal static IServiceCollection AddLearningModule(this IServiceCollection services)
|
|
{
|
|
services.AddScoped<ILearningActivityService, LearningActivityService>();
|
|
return services;
|
|
}
|
|
}
|