PageRenderTime 48ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/Helpers/IModuleController.cs

https://github.com/cmath/SimpleLoginManager
C# | 16 lines | 14 code | 2 blank | 0 comment | 0 complexity | 944b1e783925bd095ba662bd4023abf4 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Login.Helpers
  7. {
  8. interface IModuleController
  9. {
  10. void Initialize ( );
  11. void Run ( );
  12. void ShutDown ( );
  13. }
  14. }