2023-01-13 18:03:08 +08:00
|
|
|
|
|
2023-01-12 14:58:16 +08:00
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
2023-01-13 18:03:08 +08:00
|
|
|
|
using Volo.Abp.Modularity;
|
|
|
|
|
|
using Volo.Abp;
|
2023-01-12 14:58:16 +08:00
|
|
|
|
using Yi.Framework.Domain.Student;
|
2023-01-13 18:03:08 +08:00
|
|
|
|
using Yi.Framework.Domain.Shared;
|
2023-01-12 14:58:16 +08:00
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.Domain
|
|
|
|
|
|
{
|
2023-01-13 18:03:08 +08:00
|
|
|
|
[DependsOn(typeof(YiFrameworkDomainSharedModule))]
|
|
|
|
|
|
public class YiFrameworkDomainModule : AbpModule
|
2023-01-12 14:58:16 +08:00
|
|
|
|
{
|
2023-01-13 18:03:08 +08:00
|
|
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
2023-01-12 14:58:16 +08:00
|
|
|
|
{
|
2023-01-13 18:03:08 +08:00
|
|
|
|
context.Services.AddTransient<StudentManager>();
|
2023-01-12 14:58:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-13 18:03:08 +08:00
|
|
|
|
public override void OnApplicationInitialization(ApplicationInitializationContext context)
|
2023-01-12 14:58:16 +08:00
|
|
|
|
{
|
2023-01-13 18:03:08 +08:00
|
|
|
|
|
2023-01-12 14:58:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|