Esempio n. 1
0
 public CategoryService(ICategoryRepository categoryRepository, IRoutingService routingService,
                        IContentCategoryMapRepository contentCategoryMapRepository)
 {
     _categoryRepository           = categoryRepository;
     _routingService               = routingService;
     _contentCategoryMapRepository = contentCategoryMapRepository;
 }
Esempio n. 2
0
 public ContentService(IContentRepository contentRepository, IContentCategoryMapRepository contentCategoryMapRepository,
                       IRoutingService routingService, ICategoryService groupService, IContentTagMapRepository contentTagMapRepository,
                       ITagService tagService)
 {
     _contentCategoryMapRepository = contentCategoryMapRepository;
     _categoryService         = groupService;
     _routingService          = routingService;
     _contentRepository       = contentRepository;
     _contentTagMapRepository = contentTagMapRepository;
     _tagService = tagService;
 }