Exemple #1
0
 public ListItemService(IRepository <ListItem, int> repository, IRepository <ListItemCategory, int> listItemCategoryRepository, IEventBus eventBus, IListCategoryService listCategoryService, ICacheManager cacheManager, ISignals signals)
     : base(repository, eventBus)
 {
     this.cacheManager = cacheManager;
     this.signals      = signals;
     this.listItemCategoryRepository = listItemCategoryRepository;
     this.listCategoryService        = listCategoryService;
 }
Exemple #2
0
 public ListItemController(IWorkContextAccessor workContextAccessor, IListItemService listItemService, IListFieldService listFieldService, IListService listService, IListCategoryService listCategoryService)
     : base(workContextAccessor)
 {
     this.listItemService     = listItemService;
     this.listFieldService    = listFieldService;
     this.listService         = listService;
     this.listCategoryService = listCategoryService;
 }
 public HomeController(IWorkContextAccessor workContextAccessor,
                       IListService listService,
                       IListItemService listItemService,
                       IListItemCommentService listItemCommentService,
                       IListCategoryService listCategoryService,
                       IListFieldService listFieldService,
                       IListCategoryPathConstraint listCategoryPathConstraint)
     : base(workContextAccessor)
 {
     this.listService                = listService;
     this.listItemService            = listItemService;
     this.listItemCommentService     = listItemCommentService;
     this.listCategoryService        = listCategoryService;
     this.listFieldService           = listFieldService;
     this.listCategoryPathConstraint = listCategoryPathConstraint;
 }