Beispiel #1
0
 public UserService(PhotoGalleryIdentityDbContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public ImageService(PhotoGalleryIdentityDbContext context)
 {
     _context  = context;
     _s3Client = new AmazonS3Client(bucketRegion);
 }
Beispiel #3
0
 public EventService(PhotoGalleryIdentityDbContext context, ISquareService square, IImageService imageService)
 {
     _context      = context;
     _square       = square;
     _imageService = imageService;
 }