public CarouselController(ISysConfigService config, ICacheManager cache, ISysUserService user,
                           ISysCarouselService Carousel)
 {
     _cacheManager       = cache;
     _sysuserSerice      = user;
     _sysconfigService   = config;
     _syscarouselService = Carousel;
 }
Example #2
0
 public AppController(ISysConfigService config, ICacheManager cache, ISysNewsService news, ISysIconService icon, ISysCarouselService carousel, ISysSlideService slide, ISysArticleService article)
 {
     _cacheManager       = cache;
     _sysconfigService   = config;
     _sysnewsService     = news;
     _sysiconService     = icon;
     _syscarouselService = carousel;
     _sysslideService    = slide;
     _sysarticleService  = article;
 }