コード例 #1
0
ファイル: FilesController.cs プロジェクト: lexog26/Explora
 public FilesController(IExploraFileService fileService,
                        ICollectionService collectionService,
                        IBlobStorageService blobStorageService)
 {
     _fileService        = fileService;
     _collectionService  = collectionService;
     _blobStorageService = blobStorageService;
 }
コード例 #2
0
 public BlobsController(IExploraFileService fileService)
 {
     _fileService = fileService;
 }