Exemple #1
0
 public S3BlobAdapter(IAmazonS3 client, IS3BlobAdapterConfig config)
 {
     this.client = client;
     this.config = config;
 }
Exemple #2
0
 public static IServiceCollection AddLfsS3Adapter(this IServiceCollection services, IS3BlobAdapterConfig config, IAmazonS3 amazonS3)
 {
     return(services.AddSingleton <IBlobAdapter, S3BlobAdapter>().AddSingleton(amazonS3).AddSingleton(config));
 }