12345678910111213141516 |
- using Microsoft.Extensions.DependencyInjection;
- namespace AipGateway.API.Application.Modules
- {
- public static class Dependencyinjection
- {
- public static IServiceCollection AddModules(this IServiceCollection services)
- {
- //services.AddScoped<IUserService, UserService>()
- // .AddScoped<IRoleService, RoleService>()
- // .AddScoped<IAppSettingService, AppSettingService>();
- return services;
- }
- }
- }
|