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;
 }