public PendingRequestsController(
     IUserEmployeeSearch userEmployeeSearch,
     ITimeoutSettings timeoutSettings)
 {
     this.userEmployeeSearch = userEmployeeSearch;
     this.timeoutSettings    = timeoutSettings;
 }
Exemplo n.º 2
0
 public UserPreferencesController(
     IUserPreferencesService userPreferencesService,
     IUserEmployeeSearch userEmployeeSearch)
 {
     this.userPreferencesService = userPreferencesService;
     this.userEmployeeSearch     = userEmployeeSearch;
 }
Exemplo n.º 3
0
 public PushNotificationsController(
     IPushNotificationsService pushNotificationsService,
     IUserEmployeeSearch userEmployeeSearch)
 {
     this.pushNotificationsService = pushNotificationsService;
     this.userEmployeeSearch       = userEmployeeSearch;
 }
Exemplo n.º 4
0
 public UserDepartmentFeaturesController(
     IDepartmentFeaturesService departmentFeaturesService,
     IUserEmployeeSearch userEmployeeSearch)
 {
     this.departmentFeaturesService = departmentFeaturesService;
     this.userEmployeeSearch        = userEmployeeSearch;
 }
Exemplo n.º 5
0
 public UserController(
     IUserEmployeeSearch userEmployeeSearch,
     IEmployeesRegistry employeesRegistry,
     IPermissionsLoader permissionsLoader)
 {
     this.userEmployeeSearch = userEmployeeSearch;
     this.employeesRegistry  = employeesRegistry;
     this.permissionsLoader  = permissionsLoader;
 }
Exemplo n.º 6
0
 public FeedsController(
     ActorPathsBuilder pathsBuilder,
     IActorRefFactory actorFactory,
     ITimeoutSettings timeoutSettings,
     IUserEmployeeSearch userEmployeeSearch)
 {
     this.pathsBuilder       = pathsBuilder;
     this.actorFactory       = actorFactory;
     this.timeoutSettings    = timeoutSettings;
     this.userEmployeeSearch = userEmployeeSearch;
 }
 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 CanApproveOnBehalfPermissionHandler(IUserEmployeeSearch userEmployeeSearch)
 {
     this.userEmployeeSearch = userEmployeeSearch;
 }
Exemplo n.º 10
0
 public UserIsEmployeeHandler(IUserEmployeeSearch search)
 {
     this.search = search;
 }