Пример #1
0
 public DashboardService(IEmployeeService employeeService,
                         IWorkstationAuditService workstationAuditService,
                         IHardwareVaultTaskService hardwareVaultTaskService,
                         IWorkstationService workstationService,
                         IHardwareVaultService hardwareVaultService)
 {
     _employeeService          = employeeService;
     _workstationAuditService  = workstationAuditService;
     _hardwareVaultTaskService = hardwareVaultTaskService;
     _workstationService       = workstationService;
     _hardwareVaultService     = hardwareVaultService;
 }
 public RemoteWorkstationConnectionsService(IRemoteTaskService remoteTaskService,
                                            IRemoteDeviceConnectionsService remoteDeviceConnectionsService,
                                            IEmployeeService employeeService,
                                            IAccountService accountService,
                                            IWorkstationService workstationService,
                                            IHardwareVaultService hardwareVaultService,
                                            IWorkstationAuditService workstationAuditService,
                                            ILogger <RemoteWorkstationConnectionsService> logger,
                                            IAppSettingsService appSettingsService)
 {
     _remoteTaskService = remoteTaskService;
     _remoteDeviceConnectionsService = remoteDeviceConnectionsService;
     _employeeService         = employeeService;
     _accountService          = accountService;
     _workstationService      = workstationService;
     _hardwareVaultService    = hardwareVaultService;
     _workstationAuditService = workstationAuditService;
     _logger             = logger;
     _appSettingsService = appSettingsService;
 }
Пример #3
0
 public AppHub(IRemoteDeviceConnectionsService remoteDeviceConnectionsService,
               IRemoteWorkstationConnectionsService remoteWorkstationConnectionsService,
               IWorkstationAuditService workstationAuditService,
               IWorkstationService workstationService,
               IHardwareVaultService hardwareVaultService,
               IEmployeeService employeeService,
               ILicenseService licenseService,
               IAppSettingsService appSettingsService,
               ISynchronizationService synchronizationService,
               ILogger <AppHub> logger)
 {
     _remoteDeviceConnectionsService      = remoteDeviceConnectionsService;
     _remoteWorkstationConnectionsService = remoteWorkstationConnectionsService;
     _workstationAuditService             = workstationAuditService;
     _workstationService     = workstationService;
     _hardwareVaultService   = hardwareVaultService;
     _employeeService        = employeeService;
     _licenseService         = licenseService;
     _appSettingsService     = appSettingsService;
     _synchronizationService = synchronizationService;
     _logger = logger;
 }
Пример #4
0
 public AuditController(IWorkstationAuditService workstationAuditService, ILogger <AuditController> logger)
 {
     _workstationAuditService = workstationAuditService;
     _logger = logger;
 }