コード例 #1
0
ファイル: ProtocolsController.cs プロジェクト: Resgrid/Core
 public ProtocolsController(IProtocolsService protocolsService, ICallsService callsService, IAuthorizationService authorizationService, IDepartmentsService departmentsService)
 {
     _protocolsService     = protocolsService;
     _callsService         = callsService;
     _authorizationService = authorizationService;
     _departmentsService   = departmentsService;
 }
コード例 #2
0
 public HomeController(IDepartmentsService departmentsService, IUsersService usersService, IActionLogsService actionLogsService,
                       IUserStateService userStateService, IDepartmentGroupsService departmentGroupsService, Resgrid.Model.Services.IAuthorizationService authorizationService,
                       IUserProfileService userProfileService, ICallsService callsService, IGeoLocationProvider geoLocationProvider, IDepartmentSettingsService departmentSettingsService,
                       IUnitsService unitsService, IAddressService addressService, IPersonnelRolesService personnelRolesService, IPushService pushService, ILimitsService limitsService,
                       ICustomStateService customStateService, IEventAggregator eventAggregator, IOptions <AppOptions> appOptionsAccessor, UserManager <IdentityUser> userManager)
 {
     _departmentsService        = departmentsService;
     _usersService              = usersService;
     _actionLogsService         = actionLogsService;
     _userStateService          = userStateService;
     _departmentGroupsService   = departmentGroupsService;
     _authorizationService      = authorizationService;
     _userProfileService        = userProfileService;
     _callsService              = callsService;
     _geoLocationProvider       = geoLocationProvider;
     _departmentSettingsService = departmentSettingsService;
     _unitsService              = unitsService;
     _addressService            = addressService;
     _personnelRolesService     = personnelRolesService;
     _pushService        = pushService;
     _limitsService      = limitsService;
     _customStateService = customStateService;
     _eventAggregator    = eventAggregator;
     _appOptionsAccessor = appOptionsAccessor;
     _userManager        = userManager;
 }
コード例 #3
0
 public CalendarController(IDepartmentsService departmentsService, IUsersService usersService, ICalendarService calendarService,
                           IDepartmentGroupsService departmentGroupsService, IGeoLocationProvider geoLocationProvider, IEventAggregator eventAggregator,
                           IAuthorizationService authorizationService)
 {
     _departmentsService      = departmentsService;
     _usersService            = usersService;
     _calendarService         = calendarService;
     _departmentGroupsService = departmentGroupsService;
     _geoLocationProvider     = geoLocationProvider;
     _eventAggregator         = eventAggregator;
     _authorizationService    = authorizationService;
 }
コード例 #4
0
ファイル: AccountController.cs プロジェクト: mrpastewart/Core
 public AccountController(IDepartmentsService departmentsService, IUsersService usersService, IActionLogsService actionLogsService,
                          IEmailService emailService, IUserProfileService userProfileService, IDeleteService deleteService, IAuthorizationService authorizationService,
                          ILimitsService limitsService, IPersonnelRolesService personnelRolesService)
 {
     _departmentsService    = departmentsService;
     _usersService          = usersService;
     _actionLogsService     = actionLogsService;
     _emailService          = emailService;
     _userProfileService    = userProfileService;
     _deleteService         = deleteService;
     _authorizationService  = authorizationService;
     _limitsService         = limitsService;
     _personnelRolesService = personnelRolesService;
 }
コード例 #5
0
ファイル: StatusController.cs プロジェクト: mrjohndowe/Core
 public StatusController(
     IUsersService usersService,
     IActionLogsService actionLogsService,
     IDepartmentsService departmentsService,
     IUserProfileService userProfileService,
     IDepartmentGroupsService departmentGroupsService,
     IUserStateService userStateService,
     IAuthorizationService authorizationService,
     IOutboundEventProvider outboundEventProvider,
     IEventAggregator eventAggregator)
 {
     _usersService            = usersService;
     _actionLogsService       = actionLogsService;
     _departmentsService      = departmentsService;
     _userProfileService      = userProfileService;
     _userStateService        = userStateService;
     _departmentGroupsService = departmentGroupsService;
     _authorizationService    = authorizationService;
     _outboundEventProvider   = outboundEventProvider;
     _eventAggregator         = eventAggregator;
 }