public WpfStatusControlProvider(IEndpointCommandSender sender, ILocalStorage localStorage, ISecurityService securityService) { _sender = sender; _localStorage = localStorage; _securityService = securityService; _control = new WpfStatusControl(_sender, _localStorage, _securityService); }
public WinFormsStatusControlProvider(IEndpointCommandSender sender) { _sender = sender; _control = new WinFormsStatusControl(_sender); }
public StatusControl(IEndpointCommandSender sender) { InitializeComponent(); _sender = sender; }
public WinFormsStatusControl(IEndpointCommandSender sender) : this() => _sender = sender;
public WpfStatusControl(IEndpointCommandSender sender, ILocalStorage localStorage, ISecurityService securityService) : this() { _sender = sender; _localStorage = localStorage; _securityService = securityService; }
public StreamingEndpointStatusControl(IEndpointCommandSender endpointCommandSender) { _endpointCommandSender = endpointCommandSender; InitializeComponent(); }
public GenericConfigurationDialogProvider(IConfigurationWriter configurationWriter, IConfigurationReader configurationReader, IEndpointCommandSender endpointCommandSender) => _configurationDialog = new GenericConfigurationDialog <PlantConfiguration>();