public ImageController(ImageRepository imageRepository, TagRepository tagRepository, AlbumsRepository albumsRepository, AlbumsImagesRepository albumsImagesRepository, IFileManager fileManager)
 {
     this.imageRepository        = imageRepository;
     this.tagRepository          = tagRepository;
     this.albumsRepository       = albumsRepository;
     this.albumsImagesRepository = albumsImagesRepository;
     this.fileManager            = fileManager;
 }
 public GalleryAlbumsController(AlbumsImagesRepository albumsImagesRepository, AlbumsRepository albumsRepository, ImageRepository imageRepository)
 {
     this.albumsImagesRepository = albumsImagesRepository;
     this.albumsRepository       = albumsRepository;
     this.imageRepository        = imageRepository;
 }