public SignalWireController(IDepartmentSettingsService departmentSettingsService, INumbersService numbersService,
                             ILimitsService limitsService, ICallsService callsService, IQueueService queueService, IDepartmentsService departmentsService,
                             IUserProfileService userProfileService, ITextCommandService textCommandService, IActionLogsService actionLogsService,
                             IUserStateService userStateService, ICommunicationService communicationService, IGeoLocationProvider geoLocationProvider,
                             IDepartmentGroupsService departmentGroupsService, ICustomStateService customStateService, IUnitsService unitsService)
 {
     _departmentSettingsService = departmentSettingsService;
     _numbersService            = numbersService;
     _limitsService             = limitsService;
     _callsService            = callsService;
     _queueService            = queueService;
     _departmentsService      = departmentsService;
     _userProfileService      = userProfileService;
     _textCommandService      = textCommandService;
     _actionLogsService       = actionLogsService;
     _userStateService        = userStateService;
     _communicationService    = communicationService;
     _geoLocationProvider     = geoLocationProvider;
     _departmentGroupsService = departmentGroupsService;
     _customStateService      = customStateService;
     _unitsService            = unitsService;
 }
Example #2
0
 public TextMessagesController(IDepartmentSettingsService departmentSettingsService, INumbersService numbersService,
                               ILimitsService limitsService, ICallsService callsService, IQueueService queueService, IDepartmentsService departmentsService,
                               IUserProfileService userProfileService, ITextCommandService textCommandService, IActionLogsService actionLogsService,
                               IUserStateService userStateService, ICommunicationService communicationService)
 {
     _departmentSettingsService = departmentSettingsService;
     _numbersService            = numbersService;
     _limitsService             = limitsService;
     _callsService         = callsService;
     _queueService         = queueService;
     _departmentsService   = departmentsService;
     _userProfileService   = userProfileService;
     _textCommandService   = textCommandService;
     _actionLogsService    = actionLogsService;
     _userStateService     = userStateService;
     _communicationService = communicationService;
 }
Example #3
0
 protected with_the_numbers_service()
 {
     _numbersService = Resolve <INumbersService>();
 }
Example #4
0
        public NumberServiceTests()
        {
            FileStorage fileStorage = new FileStorage();

            _numbersService = new NumbersService(fileStorage);
        }
Example #5
0
 public HomeController()
 {
     this.numberService = (INumbersService)DependencyResolver.Current.GetService(typeof(INumbersService));
 }
Example #6
0
 public NumbersController(INumbersService numbersService)
 {
     _numbersService = numbersService;
 }