public PhotocourseController(
     IPhotocourseService photocourseService,
     ICacheService cache,
     IAutoMapperService mapper)
     : base(mapper)
 {
     this.photocourseService = photocourseService;
     this.cache = cache;
 }
 public PhotocourseSetupController(
     ICacheService cache,
     IImageService imageService,
     IPhotocourseService photocourseService,
     IAutoMapperService mapper)
     : base(mapper)
 {
     this.cache              = cache;
     this.imageService       = imageService;
     this.photocourseService = photocourseService;
 }