Esempio n. 1
0
 public PictureService(
     UrbanSolutionDbContext db, ICloudImageService cloudinary, IPictureInfoWriterService pictureInfoWriter)
 {
     this.db                = db;
     this.cloudService      = cloudinary;
     this.pictureInfoWriter = pictureInfoWriter;
 }
Esempio n. 2
0
 public PictureService(ICloudImageService cloudinary, IPictureInfoWriterService pictureInfoWriter, IDeletableEntityRepository <CloudinaryImage> imageRepository)
 {
     this.cloudService      = cloudinary;
     this.pictureInfoWriter = pictureInfoWriter;
     this.imageRepository   = imageRepository;
 }