13 lines
342 B
C#
13 lines
342 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
using Volo.Abp.Modularity;
|
|
|
|
namespace Skcks.Study.WebProject.HelloWorld;
|
|
|
|
public class AppModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
// 手动注册
|
|
// context.Services.AddTransient<HelloWorldService>();
|
|
}
|
|
} |