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