public PhotoGalleryManager(IPhotoGalleryService photoGallery) { this.photoGallery = photoGallery; }
public PhotoGalleryController(IPhotoGalleryService photoGalleryService) { _photoGalleryService = photoGalleryService; }
public PhotoGalleryController(IPhotoGalleryService _service) { service = _service; }
public UserController(IPhotoGalleryService service) { _service = service; }
public GalleryController(IPhotoCategoryService _photoCategoryService, IPhotoGalleryService _photoGalleryService, IHostingEnvironment _env) { photoCategoryService = _photoCategoryService; photoGalleryService = _photoGalleryService; env = _env; }
public PhotoGalleryController(ILogger <GuestController> logger, IPhotoGalleryService photoGalleryService) { _logger = logger; _photoGalleryService = photoGalleryService; }
public AlbumController(IPhotoGalleryService service) { _service = service; }
public PhotoGalleryController(IPhotoGalleryService photoGalleryService, IPhotoService photoService, IProjectService projectService) { this.photoGalleryService = photoGalleryService; this.photoService = photoService; this.projectService = projectService; }