public HomeController(IProductCategoryService productCatgoryService, IPostCategoryService postCategoryService,
                       IProductService productService, IPostService postService, ISlideService slideService, ITagService tagService, ISupportOnlineService supportOnline,
                       IFooterService footerService, ISystemConfigService systemConfigService)
 {
     this._productCategoryService = productCatgoryService;
     this._postCategoryService    = postCategoryService;
     this._postService            = postService;
     this._productService         = productService;
     this._slideService           = slideService;
     this._tagService             = tagService;
     this._supportOnline          = supportOnline;
     this._footerService          = footerService;
     this._systemConfigService    = systemConfigService;
 }
Beispiel #2
0
 public SupportOnlineController(ISupportOnlineService supportOnlineService, IErrorService errorService) : base(errorService)
 {
     this._supportOnlineService = supportOnlineService;
 }
Beispiel #3
0
 public ContactController(ISupportOnlineService supportService)
 {
     this._supportService = supportService;
 }