Пример #1
0
 public SchedulerController(IUserSyncService userSyncService, IADGroupSyncService groupSyncService, ISyncBatchService syncBatchService, IActiveDirectoryContext adContext)
 {
     _userSyncService  = userSyncService;
     _groupSyncService = groupSyncService;
     _syncBatchService = syncBatchService;
     _adContext        = adContext;
 }
Пример #2
0
 public UserSummaryViewModel(IDialogService dialogService, ISettings settings, IAuthService authService, IUserSyncService userSyncService, IDeviceSetupService deviceSetupService)
 {
     _dialogService      = dialogService;
     _settings           = settings;
     _authService        = authService;
     _userSyncService    = userSyncService;
     _deviceSetupService = deviceSetupService;
 }
Пример #3
0
 public HangfireScheduler(IUserSyncService userSyncService, ISyncBatchService syncBatchService, IActiveDirectoryContext adContext, IImportService importService, IConfiguration configuration, IHttpContextAccessor context)
 {
     _userSyncService  = userSyncService;
     _syncBatchService = syncBatchService;
     _adContext        = adContext;
     _importService    = importService;
     _configuration    = configuration;
     _context          = context;
 }
 internal OAuthCredentialService(IUserSyncService userSyncService)
 {
     _userSyncService = userSyncService;
 }