| 123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- namespace Abp.Modules
- {
- public interface IAbpModuleManager
- {
- AbpModuleInfo StartupModule { get; }
- IReadOnlyList<AbpModuleInfo> Modules { get; }
- void Initialize(Type startupModule);
- void StartModules();
- void ShutdownModules();
- }
- }
|