Exemplo n.º 1
0
 public FetchService(IAPIRestClient restClient, IStoreData storetData, IStoreReadWrite readWrite)
 {
     this.restClient = restClient;
     this.storeData  = storetData;
     this.readWrite  = readWrite;
 }
Exemplo n.º 2
0
 public void Setup()
 {
     readWrite = new StoreReadWrite();
 }
Exemplo n.º 3
0
 public FetchService()
 {
     restClient = new APIRestClient();
     storeData  = new StoreData();
     readWrite  = new StoreReadWrite(storeData);
 }