public GetFileWebController( IActorRefFactory actorSystem, ITimeoutSettings timeoutSettings) { this.actorSystem = actorSystem; this.timeoutSettings = timeoutSettings; }
public PendingRequestsController( IUserEmployeeSearch userEmployeeSearch, ITimeoutSettings timeoutSettings) { this.userEmployeeSearch = userEmployeeSearch; this.timeoutSettings = timeoutSettings; }
public PermissionsLoader( IActorRefFactory actorSystem, ActorPathsBuilder pathsBuilder, ITimeoutSettings timeoutSettings) { this.actorSystem = actorSystem; this.pathsBuilder = pathsBuilder; this.timeoutSettings = timeoutSettings; }
public UserPreferencesService( IActorRefFactory actorsFactory, ActorPathsBuilder actorPathsBuilder, ITimeoutSettings timeoutSettings) { this.userPreferencesActor = actorsFactory.ActorSelection( actorPathsBuilder.Get(WellKnownActorPaths.UserPreferences)); this.timeoutSettings = timeoutSettings; }
public DepartmentFeaturesService( IActorRefFactory actorsFactory, ActorPathsBuilder actorPathsBuilder, ITimeoutSettings timeoutSettings) { this.organizationActor = actorsFactory.ActorSelection( actorPathsBuilder.Get(WellKnownActorPaths.Organization)); this.timeoutSettings = timeoutSettings; }
public CalendarEventsApprovalsController( ITimeoutSettings timeoutSettings, IEmployeesRegistry employeesRegistry, IAuthorizationService authorizationService) { this.timeoutSettings = timeoutSettings; this.employeesRegistry = employeesRegistry; this.authorizationService = authorizationService; }
public FeedsController( ActorPathsBuilder pathsBuilder, IActorRefFactory actorFactory, ITimeoutSettings timeoutSettings, IUserEmployeeSearch userEmployeeSearch) { this.pathsBuilder = pathsBuilder; this.actorFactory = actorFactory; this.timeoutSettings = timeoutSettings; this.userEmployeeSearch = userEmployeeSearch; }
public EmployeesController( IEmployeesRegistry employeesRegistry, ITimeoutSettings timeoutSettings, IPermissionsLoader permissionsLoader, ISslSettings sslSettings) { this.employeesRegistry = employeesRegistry; this.timeoutSettings = timeoutSettings; this.permissionsLoader = permissionsLoader; this.sslSettings = sslSettings; }
public CalendarEventsController( ITimeoutSettings timeoutSettings, IEmployeesRegistry employeesRegistry, IAuthorizationService authorizationService, IUserEmployeeSearch userEmployeeSearch) { this.timeoutSettings = timeoutSettings; this.employeesRegistry = employeesRegistry; this.authorizationService = authorizationService; this.userEmployeeSearch = userEmployeeSearch; }
public PendingRequestsController( IUserEmployeeSearch userEmployeeSearch, ActorPathsBuilder pathBuilder, ITimeoutSettings timeoutSettings, IActorRefFactory actorsFactory, IUserPreferencesService userPreferencesService) { this.userEmployeeSearch = userEmployeeSearch; this.pathBuilder = pathBuilder; this.timeoutSettings = timeoutSettings; this.actorsFactory = actorsFactory; this.userPreferencesService = userPreferencesService; }
public HealthService(IActorRefFactory actorSystem, ActorPathsBuilder pathsBuilder, ITimeoutSettings timeoutSettings) { this.actorSystem = actorSystem; this.pathsBuilder = pathsBuilder; this.timeoutSettings = timeoutSettings; }
public EmployeePhotoController(IEmployeesRegistry employeesRegistry, ITimeoutSettings timeoutSettings) { this.employeesRegistry = employeesRegistry; this.timeoutSettings = timeoutSettings; }
public EmployeesRegistry(IActorRefFactory actorSystem, ActorPathsBuilder pathsBuilder, ITimeoutSettings timeoutSettings) { this.actorSystem = actorSystem; this.pathsBuilder = pathsBuilder; this.timeoutSettings = timeoutSettings; }
public DepartmentsController(IActorRefFactory actorSystem, ActorPathsBuilder pathsBuilder, ITimeoutSettings timeoutSettings) { this.actorSystem = actorSystem; this.pathsBuilder = pathsBuilder; this.timeoutSettings = timeoutSettings; }