Ejemplo n.º 1
0
 public BlobServiceFactory(IOptions <BlobServiceOptions> options, ApplicationRepository repo, IInstrumentationService instrumentationService)
 {
     _config = options.Value;
     _repo   = repo;
     _instrumentationService = instrumentationService;
 }
Ejemplo n.º 2
0
 public BlobServiceFactory(IOptions <BlobServiceOptions> options, ApplicationRepository repo)
 {
     _config = options.Value;
     _repo   = repo;
 }