public UploadHandler(ISaveFiles fileSaver, IEncrypt encryptor, IUnzip unzipper, IMakeWebRequests webRequester)
 {
     _fileSaver    = fileSaver;
     _encryptor    = encryptor;
     _unzipper     = unzipper;
     _webRequester = webRequester;
 }
 public UnZipGZipStream(IUnzip next) : base(next)
 {
 }
Beispiel #3
0
 public UnZipBase(IUnzip next)
 {
     m_NextActor = next;
 }
Beispiel #4
0
 /// <summary>
 /// used to change any actors in the chain of responsibility later
 /// </summary>
 /// <param name="unzip"></param>
 public void SetNExtChain(IUnzip unzip)
 {
     m_NextActor = unzip;
 }
Beispiel #5
0
 public UnZipRarLocal(IUnzip next)
     : base(next)
 {
 }
Beispiel #6
0
 public UnZipRarSystem(IUnzip next)
     : base(next)
 {
 }
 public UnZipZipFile(IUnzip next)
     : base(next)
 {
 }