public FetchService(IAPIRestClient restClient, IStoreData storetData, IStoreReadWrite readWrite) { this.restClient = restClient; this.storeData = storetData; this.readWrite = readWrite; }
public void Setup() { readWrite = new StoreReadWrite(); }
public FetchService() { restClient = new APIRestClient(); storeData = new StoreData(); readWrite = new StoreReadWrite(storeData); }