public StoreClient(Authentication auth, AdlClient.Models.StoreAccountRef account) :
     base(auth)
 {
     this.RestClients = new AdlClient.Rest.StoreRestClients(auth, account);
     this.FileSystem  = new AdlClient.Commands.FileSystemCommands(account, this.RestClients);
     this.Account     = new AdlClient.Commands.StoreAccountCommands(account, this.RestClients);
 }
Exemplo n.º 2
0
 internal FileSystemCommands(AdlClient.Models.StoreAccountRef account, AdlClient.Rest.StoreRestClients restclients)
 {
     this.Account     = account;
     this.RestClients = restclients;
 }