/// <summary>
 /// Fires when the application ends.
 /// </summary>
 public void Application_End()
 {
     Bootstrapper.DisposeBootstrapperTasks();
     OnEnd();
 }
 /// <summary>
 /// Fires when the application starts.
 /// </summary>
 public void Application_Start()
 {
     Bootstrapper.ExecuteBootstrapperTasks();
     OnStart();
 }