상속: IButtonEndpoint
예제 #1
0
        public TestButton(ComponentId id, TestButtonEndpoint endpoint, ITimerService timerService, ISettingsService settingsService)
            : base(id, endpoint, timerService, settingsService)
        {
            if (endpoint == null) throw new ArgumentNullException(nameof(endpoint));

            Endpoint = endpoint;
        }
예제 #2
0
파일: TestButton.cs 프로젝트: v1ku/HA4IoT
        public TestButton(ComponentId id, TestButtonEndpoint endpoint, ITimerService timerService, ISettingsService settingsService)
            : base(id, endpoint, timerService, settingsService)
        {
            if (endpoint == null)
            {
                throw new ArgumentNullException(nameof(endpoint));
            }

            Endpoint = endpoint;
        }
예제 #3
0
        public TestButton(ComponentId id, TestButtonEndpoint endpoint, IHomeAutomationTimer timer)
            : base(id, endpoint, timer)
        {
            if (endpoint == null)
            {
                throw new ArgumentNullException(nameof(endpoint));
            }

            Endpoint = endpoint;
        }