コード例 #1
0
 // private readonly ImageFileStorageManager _imageFileStorageManager;
 public PropertyController(IAppUserRepository appUserRepo,
                           IPropertySeekRepository repo,
                           IPhotoRepository photoRepo,
                           IMapper mapper,
                           ILogger <PropertyController> logger
                           // ImageFileStorageManager imageFileStorageManager
                           ) : base(appUserRepo, mapper, photoRepo)
 {
     this._repo      = repo;
     this._photoRepo = photoRepo;
     // this._imageFileStorageManager = imageFileStorageManager;
     this._logger = logger;
 }
コード例 #2
0
ファイル: PhotoController.cs プロジェクト: koitsu884/Wa-comi
 public PhotoController(
     IAppUserRepository appUserRepo,
     IAttractionRepository attractionRepo,
     IPropertySeekRepository propertyRepo,
     IBlogRepository blogRepo,
     IClanSeekRepository clanSeekRepo,
     IPhotoRepository photoRepo,
     IMapper mapper,
     ILogger <PhotoController> logger,
     ImageFileStorageManager imageFileStorageManager) : base(appUserRepo, mapper)
 {
     this._imageFileStorageManager = imageFileStorageManager;
     this._attractionRepo          = attractionRepo;
     this._blogRepo     = blogRepo;
     this._clanSeekRepo = clanSeekRepo;
     this._photoRepo    = photoRepo;
     this._propertyRepo = propertyRepo;
     this._logger       = logger;
 }