Example #1
0
 public StoreClient(Authentication auth, StoreAccount store) :
     base(auth)
 {
     this.RestClients = new StoreRestClients(store, auth);
     this.FileSystem  = new AdlClient.FileSystem.FileSystemCommands(store, RestClients);
 }
Example #2
0
 public FileSystemCommands(StoreAccount store, StoreRestClients restclients)
 {
     this.Store       = store;
     this.RestClients = restclients;
 }