Пример #1
0
 public DeletedPhotosService(
     IMapper mapper,
     IAuthService authService,
     IElasticService elasticService,
     IPhotoBlobStorage blobStorage)
     : base(mapper, authService, elasticService, blobStorage)
 {
 }
Пример #2
0
 public PhotoService(
     IMapper mapper,
     IAuthService authService,
     IElasticService elasticService,
     IPhotoBlobStorage blobStorage,
     IImageService imageService)
     : base(mapper, authService, elasticService, blobStorage)
 {
     _imageService = imageService;
 }
Пример #3
0
 protected PhotoServiceBase(
     IMapper mapper,
     IAuthService authService,
     IElasticService elasticService,
     IPhotoBlobStorage blobStorage)
 {
     _mapper         = mapper;
     _authService    = authService;
     _elasticService = elasticService;
     _blobStorage    = blobStorage;
 }