public StoreTagCommand(ITagTransactionTable transactionTable, ITagQueue tagQueue, UpdateStorageCommand command)
 {
     _tagTxTable = transactionTable;
     _tagQueue   = tagQueue;
     _command    = command;
 }
예제 #2
0
        public UploadHandler(ITagTransactionTable transactionTable, ITagTransactionBlobContainer container, ITagQueue queue)
        {
            this.TagTransactionTable = transactionTable;

            this.TagTransactionBlobContainer = container;

            this.TagQueue = queue;
        }