Example #1
0
 public QuestDataService(HttpClient hhttpClient,
                         IMapper mapper,
                         IDataPointDataService dataPointService,
                         IClient client,
                         ILocalStorageService localStorage,
                         NavigationManager navigation,
                         IAuthenticationService authenticationService) : base(client, localStorage, navigation, authenticationService)
 {
     _httpClient       = client.HttpClient;
     _mapper           = mapper;
     _dataPointService = dataPointService;
 }
Example #2
0
 public QuestDataService(HttpClient httpClient, IMapper mapper, IDataPointDataService dataPointService)
 {
     _httpClient       = httpClient;
     _mapper           = mapper;
     _dataPointService = dataPointService;
 }