IAbpModuleManager.cs 334 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Abp.Modules
  4. {
  5. public interface IAbpModuleManager
  6. {
  7. AbpModuleInfo StartupModule { get; }
  8. IReadOnlyList<AbpModuleInfo> Modules { get; }
  9. void Initialize(Type startupModule);
  10. void StartModules();
  11. void ShutdownModules();
  12. }
  13. }