public CloudFrontDeployer(ElasticBeanstalkDeploymentConfigurationProvider configProvider,
     IElasticBeanstalkService elasticBeanstalkService,
     IS3Service s3Service,
     ISmokeTestService smokeTestService,
     IIdentityManagementService iamService,
     ICloudFrontService cloudFrontService,
     ISslUploaderService sslUploaderService,
     IConfigurationOptionSettingsProvider configurationOptionSettingsProvider,
     IRoute53Service route53Service,
     ILoggerProvider loggerProvider)
 {
     this.configurationOptionSettingsProvider = configurationOptionSettingsProvider;
     this.smokeTestService = smokeTestService;
     this.elasticBeanstalkService = elasticBeanstalkService;
     this.s3Service = s3Service;
     this.configProvider = configProvider;
     this.iamService = iamService;
     this.cloudFrontService = cloudFrontService;
     this.sslUploaderService = sslUploaderService;
     this.route53Service = route53Service;
     this.loggerProvider = loggerProvider;
 }
Esempio n. 2
0
 public ValuesController(IS3Service service)
 {
     _service = service;
 }
 public ProfileController(IUnitOfWork unitOfWork, IS3Service service)
 {
     _unitOfWork = unitOfWork;
     _service    = service;
 }
Esempio n. 4
0
 public TOUDataLoader(ICsvMapping <TOUData> csvMapping, IS3Service s3Service, ILogger <TOUDataLoader> logger)
 {
     _csvMapping = csvMapping;
     _s3Service  = s3Service;
     _logger     = logger;
 }
 public GetUserMediaByTypeRequestHandler(IApplicationDbContext context, IS3Service s3AccessService)
 {
     _context         = context;
     _s3AccessService = s3AccessService;
 }
Esempio n. 6
0
 //constructor
 public HomeController(ILogger <HomeController> logger, MummyDataContext cnt, SignInManager <IdentityUser> signInManager, IS3Service storage)
 {
     context            = cnt;
     _logger            = logger;
     _s3storage         = storage;
     this.signInManager = signInManager;
 }
Esempio n. 7
0
 public LockerController(IS3Service S3Service)
 {
     _S3Service = S3Service;
 }
 public imageUploadController(IS3Service service)
 {
     _service = service;
 }
 public AWSS3BucketController(IS3Service s3service)
 {
     this._s3service = s3service;
 }
Esempio n. 10
0
 public UploadChatFileRequestHandler(IMediator mediator, IS3Service s3Service)
 {
     _mediator  = mediator;
     _s3Service = s3Service;
 }
 public AuthorizationController(IS3Service service)
 {
     _service = service;
 }
 public GetTrainingMediaRequestHandler(IApplicationDbContext context, IS3Service s3)
 {
     _context = context;
     _s3      = s3;
 }
Esempio n. 13
0
 public ImagesController(IS3Service s3Service)
 {
     _s3Service = s3Service;
 }
        private InsertSeiyuuHandler CreateHandler(SeiyuuMoeContext dbContext, JikanService jikanService, IS3Service s3Service, int insertSeiyuuBatchSize)
        {
            var animeRepository     = new AnimeRepository(dbContext);
            var seiyuuRepository    = new SeiyuuRepository(dbContext);
            var characterRepository = new CharacterRepository(dbContext);
            var animeRoleRepository = new AnimeRoleRepository(dbContext);
            var seasonRepository    = new SeasonRepository(dbContext);

            return(new InsertSeiyuuHandler(
                       insertSeiyuuBatchSize,
                       0,
                       seiyuuRepository,
                       seasonRepository,
                       characterRepository,
                       animeRepository,
                       animeRoleRepository,
                       jikanService,
                       s3Service
                       ));
        }
 public AttachmentController(IS3Service S3service)
 {
     this._service = S3service;
 }
Esempio n. 16
0
 public CategoriesController(IS3Service s3Service, IVILabRepository viLabRepository)
 {
     _s3Service       = s3Service;
     _viLabRepository = viLabRepository;
 }
Esempio n. 17
0
 public PhotosCrudController(FagElGamousContext context, IS3Service s3)
 {
     _context   = context;
     _s3Storage = s3;
 }
Esempio n. 18
0
 public ShowcaseProjectProfile(IS3Service s3Service)
 {
     CreateMap <ShowcaseProject, ShowcaseProject>();
 }
Esempio n. 19
0
 public S3BucketController(IS3Service service, IUserRepository userRepository, IImageService imageService)
 {
     _service        = service;
     _userRepository = userRepository;
     _imageService   = imageService;
 }
Esempio n. 20
0
 public S3Controller(IS3Service s3Service) => this.s3Service = s3Service;
Esempio n. 21
0
 public S3Controller(IS3Service s3Service)
 {
     _s3Service = s3Service;
 }
Esempio n. 22
0
 public UploadChatMediaRequestHandler(IS3Service s3, IMediaCompressionService compressionService)
 {
     _s3Service          = s3;
     _compressionService = compressionService;
 }
Esempio n. 23
0
 public HistoryController(IS3Service s3Service, IDynamoDBService dynamoDBService)
 {
     _s3Service       = s3Service;
     _dynamoDBService = dynamoDBService;
 }
Esempio n. 24
0
 public S3Transfer(IS3Service service, string bucketName, string key)
 {
     this.service    = service;
     this.bucketName = bucketName;
     this.key        = key;
 }
 public GetAllTrainingProgramsRequestHandler(IApplicationDbContext context, IS3Service s3Service)
 {
     _context   = context;
     _s3Service = s3Service;
 }
 public S3BucketController(IS3Service service)
 {
     _service = service;
 }
Esempio n. 27
0
 public S3BucketController(IS3Service service, IHostingEnvironment env)
 {
     _service = service;
     _env     = env;
 }
Esempio n. 28
0
 public ImageService(IRepository <Domain.Image, string> repository, IS3Service s3Service)
 {
     _repository = repository;
     _s3Service  = s3Service;
 }
Esempio n. 29
0
 public GetUserFeedRequestHandler(IApplicationDbContext context, IActivityService activityService, IS3Service s3Service)
 {
     _context         = context;
     _activityService = activityService;
     _s3Service       = s3Service;
 }
Esempio n. 30
0
 public UploadUserAvatarRequestHandler(IS3Service s3, IApplicationDbContext context, IMediaCompressionService compressionService)
 {
     _s3                 = s3;
     _context            = context;
     _compressionService = compressionService;
 }
Esempio n. 31
0
 public CurrentUserRequestHandler(IMapper mapper, IApplicationDbContext context, IMediator mediator, IS3Service s3Service)
 {
     _mapper    = mapper;
     _context   = context;
     _mediator  = mediator;
     _s3Service = s3Service;
 }