public PhotocourseController(
     IPhotocourseService photocourseService,
     ICacheService cache,
     IAutoMapperService mapper)
     : base(mapper)
 {
     this.photocourseService = photocourseService;
     this.cache = cache;
 }
 public HomeController(
     IInformationGetService informationService,
     IPhotocourseGetService photocourseService,
     ICacheService cache,
     IAutoMapperService mapper)
     : base(mapper)
 {
     this.informationService = informationService;
     this.photocourseService = photocourseService;
     this.cache = cache;
 }