public ImageController(IArticleStorageService storageService)
 {
     _storageService = storageService;
 }
예제 #2
0
 public BlobApiController()
 {
     _storage = IoCContainer.Instance.Container.Resolve <IArticleStorageService>();
 }
예제 #3
0
 public BlobController(IArticleStorageService storage)
 {
     _storage = storage;
 }
예제 #4
0
 public BlobApiController(IArticleStorageService storage)
 {
     _storage = storage;
 }