public GenericCatalogController(IGenericCatalogService genericCatalogService,
     CatalogSettings catalogSettings,
     IPermissionService permissionService)
 {
     _genericCatalogService = genericCatalogService;
     _catalogSettings = catalogSettings;
     _permissionService = permissionService;
 }
 public GenericCatalogBuilder(IGenericCatalogService genericCatalogService,
     IWebHelper webHelper,
     CatalogSettings catalogSettings,
     UrlHelper urlHelper)
 {
     _modelList = new List<GenericCatalogPartsModel>();
     _genericCatalogService = genericCatalogService;
     _catalogSettings = catalogSettings;
     _urlHelper = urlHelper;
 }
 public CatalogController(ICatalogService catalogService, 
     IGenericCatalogService genericCatalogService,
     ICatalogTemplateService catalogTemplateService,
     IPermissionService permissionService,
     CatalogSettings catalogSettings)
 {
     _catalogService = catalogService;
     _genericCatalogService = genericCatalogService;
     _catalogTemplateService = catalogTemplateService;
     _permissionService = permissionService;
     _catalogSettings = catalogSettings;
 }