public WebCategoryService(IUserInitiatedClient userInitiatedClient, ISpeculativeClient speculativeClient,
                           ILocalizedStringProvider loc, ILoggingService loggingService) : base(loc)
 {
     _loggingService      = loggingService;
     _userInitiatedClient = userInitiatedClient.Client;
     _speculativeClient   = speculativeClient.Client;
 }
 public WebCourseService(IUserInitiatedClient userInitiated, ISpeculativeClient speculative,
                         ILocalizedStringProvider loc, IDispatcherHelper dispatcherHelper)
     : base(loc)
 {
     _dispatcherHelper = dispatcherHelper;
     _speculative      = speculative.Client;
     _userInitiated    = userInitiated.Client;
 }
Ejemplo n.º 3
0
 public WebContactService(IUserInitiatedClient apiService, ILoggingService loggingService,
                          IDialogService dialogService, ILocalizedStringProvider loc, IDispatcherHelper dispatcherHelper, IAuthenticationService authenticationService)
 {
     _loggingService        = loggingService;
     _dialogService         = dialogService;
     _loc                   = loc;
     _dispatcherHelper      = dispatcherHelper;
     _authenticationService = authenticationService;
     _apiService            = apiService.Client;
 }