Example #1
0
 public FilesController(IExploraFileService fileService,
                        ICollectionService collectionService,
                        IBlobStorageService blobStorageService)
 {
     _fileService        = fileService;
     _collectionService  = collectionService;
     _blobStorageService = blobStorageService;
 }
Example #2
0
 public BlobsController(IExploraFileService fileService)
 {
     _fileService = fileService;
 }