Ejemplo n.º 1
0
 public HardwareVaultsController(IHardwareVaultService hardwareVaultService,
                                 IRemoteDeviceConnectionsService remoteDeviceConnectionsService,                                    
                                 ILogger<HardwareVaultsController> logger)
 {
     _hardwareVaultService = hardwareVaultService;
     _remoteDeviceConnectionsService = remoteDeviceConnectionsService;
     _logger = logger;
 }
Ejemplo n.º 2
0
 public DashboardService(IEmployeeService employeeService,
                         IWorkstationAuditService workstationAuditService,
                         IHardwareVaultTaskService hardwareVaultTaskService,
                         IWorkstationService workstationService,
                         IHardwareVaultService hardwareVaultService)
 {
     _employeeService          = employeeService;
     _workstationAuditService  = workstationAuditService;
     _hardwareVaultTaskService = hardwareVaultTaskService;
     _workstationService       = workstationService;
     _hardwareVaultService     = hardwareVaultService;
 }
 public RemoteDeviceConnectionsService(IServiceProvider services,
                                       IHardwareVaultService hardwareVaultService,
                                       IRemoteTaskService remoteTaskService,
                                       IEmployeeService employeeService,
                                       IDataProtectionService dataProtectionService,
                                       ILogger <RemoteDeviceConnectionsService> logger)
 {
     _services              = services;
     _hardwareVaultService  = hardwareVaultService;
     _remoteTaskService     = remoteTaskService;
     _employeeService       = employeeService;
     _dataProtectionService = dataProtectionService;
     _logger = logger;
 }
Ejemplo n.º 4
0
 public RemoteTaskService(IHardwareVaultService hardwareVaultService,
                          IHardwareVaultTaskService hardwareVaultTaskService,
                          IAccountService accountService,
                          IDataProtectionService dataProtectionService,
                          ILdapService ldapService,
                          IAppSettingsService appSettingsService,
                          ISynchronizationService synchronizationService)
 {
     _hardwareVaultService     = hardwareVaultService;
     _hardwareVaultTaskService = hardwareVaultTaskService;
     _accountService           = accountService;
     _dataProtectionService    = dataProtectionService;
     _ldapService            = ldapService;
     _appSettingsService     = appSettingsService;
     _synchronizationService = synchronizationService;
 }
Ejemplo n.º 5
0
 public EmployeeService(IAsyncRepository <Employee> employeeRepository,
                        IHardwareVaultService hardwareVaultService,
                        IHardwareVaultTaskService hardwareVaultTaskService,
                        ISoftwareVaultService softwareVaultService,
                        IAccountService accountService,
                        ISharedAccountService sharedAccountService,
                        IWorkstationService workstationService,
                        IDataProtectionService dataProtectionService)
 {
     _employeeRepository       = employeeRepository;
     _hardwareVaultService     = hardwareVaultService;
     _hardwareVaultTaskService = hardwareVaultTaskService;
     _softwareVaultService     = softwareVaultService;
     _accountService           = accountService;
     _sharedAccountService     = sharedAccountService;
     _workstationService       = workstationService;
     _dataProtectionService    = dataProtectionService;
 }
 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;
 }
Ejemplo n.º 7
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;
 }
Ejemplo n.º 8
0
 public HardwareVaultServiceTests(CustomWebAppFactory <Startup> factory)
 {
     _hardwareVaultService = factory.GetHardwareVaultService();
     _testingOptions       = new HardwareVaultServiceTestingOptions(100, 30, "1234567", 20, factory.GetHardwareVaultRepository(), factory.GetHardwareVaultProfileRepository());
 }