public VideoController(IVideoServices videoServices, IVideoCategoryServices categoryServices, IPageMetaServices pageMetaServices, IMapper mapper) { _videoServices = videoServices; _categoryServices = categoryServices; _pageMetaServices = pageMetaServices; _mapper = mapper; }
public FrontMenuController(IMenuCategoryServices menuCategoryService, IMenuServices menuService, IPageMetaServices pageMetaService, IMapper mapper, IQNZDbContext db) { _menuService = menuService; _menuCategoryService = menuCategoryService; _pageMetaService = pageMetaService; _mapper = mapper; _db = db; }
public DocumentCategoryController( IDocumentCategoryServices categoryServices, IPageMetaServices pageMetaServices, IMapper mapper) { _categoryServices = categoryServices; _pageMetaServices = pageMetaServices; _mapper = mapper; }
public LinkCategoryController( ILinkCategoryServices categoryServices, IPageMetaServices pageMetaServices, IMapper mapper) { _categoryServices = categoryServices; _pageMetaServices = pageMetaServices; _mapper = mapper; }
public LinkController(ILinkServices linkServices, ILinkCategoryServices categoryService, IPageMetaServices pageMetaService) { _linkServices = linkServices; _categoryService = categoryService; _pageMetaService = pageMetaService; }
public ChronicleController(IChronicleServices chronicleService, IPageMetaServices pageMetaServices, IMapper mapper) { _chronicleService = chronicleService; _pageMetaServices = pageMetaServices; _mapper = mapper; }
public ChronicleController(IChronicleServices chronicleService, IPageMetaServices pageMetaService) { _chronicleService = chronicleService; _pageMetaService = pageMetaService; }
public CustomizeController(IPageMetaServices pageMetaService, ILoggingService logger) { _pageMetaService = pageMetaService; _logger = logger; }
public TeamController(ITeamServices teamServices, IPageMetaServices pageMetaServices, IMapper mapper) { _teamServices = teamServices; _pageMetaServices = pageMetaServices; _mapper = mapper; }