Пример #1
0
 public LayoutController(IProductAppService productAppService,
                         ICategoryAppService categoryAppService,
                         ICompanyAppService companyAppService,
                         ISeoAppService seoAppService) : base(seoAppService)
 {
     _companyAppService  = companyAppService;
     _productAppService  = productAppService;
     _categoryAppService = categoryAppService;
 }
Пример #2
0
 public AboutController(ISeoAppService seoAppService, ICompanyAppService companyAppService) : base(seoAppService)
 {
     _companyAppService = companyAppService;
 }
Пример #3
0
 public HomeController(IBannerAppService bannerAppService, ISeoAppService seoAppService, ICompanyAppService companyAppService) : base(seoAppService)
 {
     _companyAppService = companyAppService;
     _bannerAppService  = bannerAppService;
 }
Пример #4
0
 public WebLayoutController(ICategoryAppService categoryAppService, ISeoAppService seoAppService) : base(seoAppService)
 {
     _categoryAppService = categoryAppService;
 }
Пример #5
0
 public ProductController(ISeoAppService seoAppService, IProductAppService productAppService, ICategoryAppService categoryAppService) : base(seoAppService)
 {
     _productAppService  = productAppService;
     _categoryAppService = categoryAppService;
 }
Пример #6
0
 public ReportController(IReportAppService reportAppService, ISeoAppService seoAppService) : base(seoAppService)
 {
     _reportAppService = reportAppService;
 }
Пример #7
0
 protected CarFactoryControllerBase(ISeoAppService seoAppService)
 {
     _seoAppService         = seoAppService;
     LocalizationSourceName = CarFactoryConsts.LocalizationSourceName;
 }
Пример #8
0
 public SeoController(ISeoAppService seoAppService, IUserNavigationManager userNavigationManager)
     : base(userNavigationManager)
 {
     _seoAppService = seoAppService;
 }