public TemplateController(ITemplateService templateService, ILogService logService, ISystemConfigurationService systemConfigurationService, IArticleAttachService articleAttachService) { _templateService = templateService; _logService = logService; _systemConfigurationService = systemConfigurationService; _articleAttachService = articleAttachService; }
public WildlifeManagerController(IWildlifeManagerService wildlifeManagerService, ILogService logService, ISystemConfigurationService systemConfigurationService, IArticleAttachService articleAttachService, IWildlifeContentService wildlifeContentService) { _wildlifeManagerService = wildlifeManagerService; _logService = logService; _systemConfigurationService = systemConfigurationService; _articleAttachService = articleAttachService; _wildlifeContentService = wildlifeContentService; }
public ArticleCategoryController(IArticleCategoryService articleCategoryService, ILogService logService, ISystemConfigurationService systemConfigurationService, IArticleAttachService articleAttachService, IArticleArticleCategoryService articleArticleCategoryService) { _articleCategoryService = articleCategoryService; _logService = logService; _systemConfigurationService = systemConfigurationService; _articleAttachService = articleAttachService; _articleArticleCategoryService = articleArticleCategoryService; }
public PublicityController(IPublicityContentService publicityContentService, ILogService logService, IPublicityTypesService publicityTypesService, IPublicityCategoryService publicityCategoryService, ISystemConfigurationService systemConfigurationService, IArticleAttachService articleAttachService) { _PublicityContentService = publicityContentService; _logService = logService; _publicityTypesService = publicityTypesService; _publicityCategoryService = publicityCategoryService; _systemConfigurationService = systemConfigurationService; _articleAttachService = articleAttachService; }
public ViewSpotController(IViewSpotService viewSpotService, ILogService logService, ISystemConfigurationService systemConfigurationService, IArticleAttachService articleAttachService, IViewSpotContentService ViewSpotContentService, IRouteViewSpotService routeViewSpotService) { _viewSpotService = viewSpotService; _logService = logService; _systemConfigurationService = systemConfigurationService; _articleAttachService = articleAttachService; _viewSpotContentService = ViewSpotContentService; _routeViewSpotService = routeViewSpotService; }
public AttachController(IArticleAttachService articleAttachService, ISystemConfigurationService systemConfigurationService) { _articleAttachService = articleAttachService; _systemConfigurationService = systemConfigurationService; }