HA4IoT.Tests.Mockups.TestMotionDetector.TestMotionDetector C# (CSharp) Method

TestMotionDetector() public method

public TestMotionDetector ( ComponentId id, TestMotionDetectorEndpoint endpoint, ISchedulerService schedulerService, ISettingsService settingsService ) : System
id ComponentId
endpoint TestMotionDetectorEndpoint
schedulerService ISchedulerService
settingsService ISettingsService
return System
        public TestMotionDetector(ComponentId id, TestMotionDetectorEndpoint endpoint, ISchedulerService schedulerService, ISettingsService settingsService)
            : base(id, endpoint, schedulerService, settingsService)
        {
            if (endpoint == null) throw new ArgumentNullException(nameof(endpoint));
            if (schedulerService == null) throw new ArgumentNullException(nameof(schedulerService));

            Endpoint = endpoint;
        }