Exemplo n.º 1
0
 /// <summary>
 /// The init.
 /// </summary>
 /// <param name="bootManager">
 /// The boot manager.
 /// </param>
 public static void Init(BootManagerBase bootManager)
 {
     bootManager
     .Initialize()
     .Startup(merchContext => bootManager.OnMerchelloStarting(bootManager, new EventArgs()))
     .Complete(merchContext => bootManager.OnMerchelloStarted(bootManager, new EventArgs()));
 }
Exemplo n.º 2
0
 public static void Init(BootManagerBase bootManager)
 {
     bootManager
         .Initialize()
         .Startup(merchContext => bootManager.OnMerchelloStarting(bootManager, new EventArgs()))
         .Complete(merchContext => bootManager.OnMerchelloStarted(bootManager, new EventArgs()));
 }