Beispiel #1
0
 public PackageUpdateVerifier(IProvideConfiguration<PluginServerConfiguration> configuration, IUpdatePackage packageUpdateManager, ISendHttpRequests httpClient, IMapEntities<Collection.Plugin, Plugin> collectionPluginToPluginMapper, IHandleDialogMessages dialogMessagesEvents, ICreateDialogForUpdate dialogMessageEventFactory)
 {
     this.configuration = configuration;
     this.packageUpdateManager = packageUpdateManager;
     this.httpClient = httpClient;
     this.collectionPluginToPluginMapper = collectionPluginToPluginMapper;
     this.dialogMessagesEvents = dialogMessagesEvents;
     this.dialogMessageEventFactory = dialogMessageEventFactory;
 }
Beispiel #2
0
 public SocketIOClientWrapper(string url) : base(url) 
 {
     dialogMessageEvents = Container.GetInstance<IHandleDialogMessages>();
     socketIOEvents = Container.GetInstance<IHandleSocketIOEvents>();
 }
Beispiel #3
0
 public Loggr(ISendHttpRequests httpRequestSender, IHandleDialogMessages alertMessageEvents)
 {
     this.httpRequestSender = httpRequestSender;
     this.alertMessageEvents = alertMessageEvents;
 }
Beispiel #4
0
 public Logger(IHandleDialogMessages dialogMessageEvents)
 {
     this.dialogMessageEvents = dialogMessageEvents;
 }