LoginModule.cs 795 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.ComponentModel.Composition;
  3. using Microsoft.Practices.Prism.Logging;
  4. using Microsoft.Practices.Prism.MefExtensions.Modularity;
  5. using Microsoft.Practices.Prism.Modularity;
  6. namespace Module.Login
  7. {
  8. /// <summary>
  9. /// A module for the quickstart.
  10. /// </summary>
  11. [ModuleExport(typeof(LoginModule))]
  12. public class LoginModule : IModule
  13. {
  14. /// <summary>
  15. /// Initializes a new instance of the <see cref="ModuleA"/> class.
  16. /// </summary>
  17. /// <param name="logger">The logger.</param>
  18. /// <param name="moduleTracker">The module tracker.</param>
  19. [ImportingConstructor]
  20. public LoginModule()
  21. {
  22. }
  23. /// <summary>
  24. /// Notifies the module that it has be initialized.
  25. /// </summary>
  26. public void Initialize()
  27. {
  28. }
  29. }
  30. }