Esempio n. 1
0
 public DocumentContentService(ICompressionService compressionService, IEncryptionService encryptionService, IDocumentContentRepository repo)
 {
     _compressionService = compressionService;
     _encryptionService  = encryptionService;
     _repo = repo;
     _contentTypeProvider = new FileExtensionContentTypeProvider();
 }
 public DocumentService(IDocumentRepository repo, IDocumentContentRepository contentRepository, IMapper mapper)
 {
     _repo = repo;
     _contentRepository = contentRepository;
     _mapper            = mapper;
 }
 public DocumentContentService(IDocumentContentRepository contentRepository, IMappingEngine mapper)
 {
     _contentRepository = contentRepository;
     _mapper            = mapper;
 }