Example #1
0
 public CommandsController(ICommandSendService commandSendService, ICommandsManagementService commandManagementService, IConfiguration configuration, IAuthorizationService authorizationService)
 {
     _commandSendService       = commandSendService;
     _commandManagementService = commandManagementService;
     _config = configuration;
     _authorizationService = authorizationService;
 }
 public DevicesController(IDevicesService devicesService, IDeviceDetailsService deviceService, ICommandSendService commandSendService, ICommandsManagementService commandManagementService)
 {
     _devicesService           = devicesService;
     _deviceDetailsService     = deviceService;
     _commandSendService       = commandSendService;
     _commandManagementService = commandManagementService;
 }
 public SystemController(IConfiguration config, ICommandsManagementService cmdManagementSvc, IUserService userService)
 {
     _userService      = userService;
     _config           = config;
     _cmdManagementSvc = cmdManagementSvc;
 }
 public CommandsInitializer(ICommandsManagementService cmdManagementSvc)
 {
     _cmdManagementSvc = cmdManagementSvc;
 }