예제 #1
0
 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;
 }
예제 #2
0
 public FooterController(IErrorService errorService, IFooterService footerService) :
     base(errorService)
 {
     this._footerService = footerService;
 }
예제 #3
0
 public IndexModel(IFooterService footerService)
 {
     _footerService = footerService;
 }
예제 #4
0
 public DeleteFooterModel(IFooterService footerService)
 {
     _footerService = footerService;
 }
예제 #5
0
 public FooterComponent(IFooterService footerService)
 {
     _footerService = footerService;
 }
예제 #6
0
 public FooterController(IFooterService service) =>
 this.service = service;
예제 #7
0
 public FooterService(IFooterService footerRepository, IUnitOfWork unitOfWork)
 {
     this._footerRepository = footerRepository;
     this._unitOfWork       = unitOfWork;
 }
예제 #8
0
 public InfoFooterModel(IFooterService footerService)
 {
     _footerService = footerService;
 }
예제 #9
0
 public AddFooterModel(IFooterService footerService)
 {
     _footerService = footerService;
 }
예제 #10
0
 public EditFooterModel(IFooterService footerService)
 {
     _footerService = footerService;
 }
예제 #11
0
 public FooterViewComponent(IFooterService footerService, IPageService pageService, IMemoryCache cache)
 {
     this._footerService = footerService;
     this._pageService   = pageService;
     this._cache         = cache;
 }
예제 #12
0
 public SharedController(IFooterService footerService, ICommonService commonService)
 {
     _footerService = footerService;
     _commonService = commonService;
 }
예제 #13
0
 public FooterController(IFooterService FooterService)
 {
     this._FooterService = FooterService;
 }
예제 #14
0
 public FooterController(IFooterService footerService, IHeaderService headerService)
 {
     this._footerService = footerService;
     this._headerService = headerService;
 }