Exemplo n.º 1
0
 public ListCommand(IBlobsListing listing)
 {
     this.listing = listing;
 }
Exemplo n.º 2
0
 public ListBlobsHelper(IBlobsListing listing)
 {
     this.listing = listing;
 }
Exemplo n.º 3
0
 public CopyCommand(ICopier copier, IBlobsListing listing)
 {
     this.copier  = copier;
     this.listing = listing;
 }
Exemplo n.º 4
0
 public Remover(IBlobsListing listing)
 {
     this.listing = listing;
 }
Exemplo n.º 5
0
 public DownloadCommand(IDownloader downloader, IBlobsListing listing)
 {
     this.downloader = downloader;
     this.listing    = listing;
 }
Exemplo n.º 6
0
 public RemoveCommand(IRemover remover, IBlobsListing listing)
 {
     this.remover = remover;
     this.listing = listing;
 }