Esempio n. 1
0
 protected DataProcessingPipelineBase(IItemSerializerService serializerService, IEncryptionService encryptionService,
                                      ICompressionService compressionService)
 {
     _serializerService  = serializerService;
     _encryptionService  = encryptionService;
     _compressionService = compressionService;
 }
 public DataProcessingInformations(IItemSerializerService serializerService, IEncryptionService encryptionService,
                                   ICompressionService compressionService)
 {
     this.SerializerServiceId  = serializerService.Identifier;
     this.EncryptionServiceId  = encryptionService.Identifier;
     this.CompressionServiceId = encryptionService.Identifier;
 }
 public DataProcessingPipeline(IItemSerializerService serializerService, IEncryptionService encryptionService, ICompressionService compressionService) : base(serializerService, encryptionService, compressionService)
 {
 }