Ejemplo n.º 1
0
 public MainService(Services.IStarter starter,
                    Services.MicroServicesCollectionManager microServicesCollectionManager,
                    Configuration.PalaceSettings palaceSettings,
                    ILogger <MainService> logger)
 {
     this.Starter = starter;
     this.MicroServicesCollectionManager = microServicesCollectionManager;
     this.PalaceSettings = palaceSettings;
     this.Logger         = logger;
 }
Ejemplo n.º 2
0
 public Starter(Configuration.PalaceSettings palaceSettings,
                ILogger <Starter> logger,
                IMicroServicesOrchestrator orchestrator,
                MicroServicesCollectionManager microServicesCollection,
                INotificationService notificationService)
 {
     this.PalaceSettings          = palaceSettings;
     this.Logger                  = logger;
     this.Orchestrator            = orchestrator;
     this.MicroServicesCollection = microServicesCollection;
     this.NotificationService     = notificationService;
 }