Esempio n. 1
0
 public ImageService(SimpleImageGalleryDbContext cx)
 {
     ctx = cx;
 }
Esempio n. 2
0
 public ImageService(SimpleImageGalleryDbContext context)
 {
     _context = context;
 }
Esempio n. 3
0
 public ImageController(SimpleImageGalleryDbContext ctx)
 {
     _ctx = ctx;
 }
Esempio n. 4
0
 public ImageService(SimpleImageGalleryDbContext ctx)
 {
     _ctx = ctx;
 }
Esempio n. 5
0
 public GalleryController(IImage imageService, SimpleImageGalleryDbContext dbContext)
 {
     _imageService = imageService;
     _dbContext    = dbContext;
 }