Esempio n. 1
0
 /// <summary>
 /// Device Config Parameters initializer
 /// </summary>
 /// <param name="deviceConfigParamService"></param>
 /// <param name="loggingService"></param>
 public DeviceConfigParametersController(DeviceConfigParmetersServiceBase deviceConfigParamService, DeviceConfigAttributeToRequestMaps attributeMaps, ILoggingService loggingService) : base(attributeMaps, loggingService)
 {
     this._deviceConfigParamService = deviceConfigParamService;
     this._loggingService           = loggingService;
     this._loggingService.CreateLogger(typeof(DeviceConfigParametersController));
 }
Esempio n. 2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="devicePingService"></param>
 /// <param name="attributeMaps"></param>
 /// <param name="loggingService"></param>
 public PingController(IDevicePingService devicePingService, DeviceConfigAttributeToRequestMaps attributeMaps, ILogger loggingService) : base(attributeMaps, loggingService)
 {
     _devicePingService = devicePingService;
     _loggingService    = loggingService;
     //_loggingService.CreateLogger(typeof(PingController));
 }
Esempio n. 3
0
 public DeviceConfigParameterGroupsController(IDeviceConfigService <DeviceConfigParameterGroupRequest, ParameterGroupDetails> deviceConfigParamGroupService, DeviceConfigAttributeToRequestMaps attributeMap, ILoggingService loggingService) : base(attributeMap, loggingService)
 {
     this._deviceConfigParamGroupService = deviceConfigParamGroupService;
     this._loggingService = loggingService;
     this._loggingService.CreateLogger <DeviceConfigParameterGroupsController>();
 }