public WpfStatusControlProvider(IEndpointCommandSender sender, ILocalStorage localStorage, ISecurityService securityService)
 {
     _sender          = sender;
     _localStorage    = localStorage;
     _securityService = securityService;
     _control         = new WpfStatusControl(_sender, _localStorage, _securityService);
 }
예제 #2
0
 public WinFormsStatusControlProvider(IEndpointCommandSender sender)
 {
     _sender  = sender;
     _control = new WinFormsStatusControl(_sender);
 }
예제 #3
0
        public StatusControl(IEndpointCommandSender sender)
        {
            InitializeComponent();

            _sender = sender;
        }
예제 #4
0
 public WinFormsStatusControl(IEndpointCommandSender sender) : this() => _sender = sender;
예제 #5
0
 public WpfStatusControl(IEndpointCommandSender sender, ILocalStorage localStorage, ISecurityService securityService) : this()
 {
     _sender          = sender;
     _localStorage    = localStorage;
     _securityService = securityService;
 }
예제 #6
0
 public StreamingEndpointStatusControl(IEndpointCommandSender endpointCommandSender)
 {
     _endpointCommandSender = endpointCommandSender;
     InitializeComponent();
 }
 public GenericConfigurationDialogProvider(IConfigurationWriter configurationWriter,
                                           IConfigurationReader configurationReader,
                                           IEndpointCommandSender endpointCommandSender)
 => _configurationDialog = new GenericConfigurationDialog <PlantConfiguration>();