示例#1
0
 public GetFileWebController(
     IActorRefFactory actorSystem,
     ITimeoutSettings timeoutSettings)
 {
     this.actorSystem     = actorSystem;
     this.timeoutSettings = timeoutSettings;
 }
 public PendingRequestsController(
     IUserEmployeeSearch userEmployeeSearch,
     ITimeoutSettings timeoutSettings)
 {
     this.userEmployeeSearch = userEmployeeSearch;
     this.timeoutSettings    = timeoutSettings;
 }
示例#3
0
 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;
 }
示例#7
0
 public FeedsController(
     ActorPathsBuilder pathsBuilder,
     IActorRefFactory actorFactory,
     ITimeoutSettings timeoutSettings,
     IUserEmployeeSearch userEmployeeSearch)
 {
     this.pathsBuilder       = pathsBuilder;
     this.actorFactory       = actorFactory;
     this.timeoutSettings    = timeoutSettings;
     this.userEmployeeSearch = userEmployeeSearch;
 }
示例#8
0
 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;
 }
示例#11
0
 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;
 }
示例#13
0
 public EmployeesRegistry(IActorRefFactory actorSystem, ActorPathsBuilder pathsBuilder, ITimeoutSettings timeoutSettings)
 {
     this.actorSystem     = actorSystem;
     this.pathsBuilder    = pathsBuilder;
     this.timeoutSettings = timeoutSettings;
 }
示例#14
0
 public DepartmentsController(IActorRefFactory actorSystem, ActorPathsBuilder pathsBuilder, ITimeoutSettings timeoutSettings)
 {
     this.actorSystem     = actorSystem;
     this.pathsBuilder    = pathsBuilder;
     this.timeoutSettings = timeoutSettings;
 }