Ejemplo n.º 1
0
 public InstallService(IOptionService optionService, IUserService userService, iBlogsContext blogsContext, ITransactionProvider transactionProvider, IContentsService contentsService, IMetasService metasService)
 {
     _optionService       = optionService;
     _userService         = userService;
     _blogsContext        = blogsContext;
     _transactionProvider = transactionProvider;
     _contentsService     = contentsService;
     _metasService        = metasService;
 }
Ejemplo n.º 2
0
 public ApiController(IMetasService metasService, ISiteService siteService, IContentsService contentsService, IUserService userService, IHostingEnvironment env, IAttachService attachService, IOptionService optionService)
 {
     _metasService    = metasService;
     _siteService     = siteService;
     _contentsService = contentsService;
     _userService     = userService;
     _env             = env;
     _attachService   = attachService;
     _optionService   = optionService;
 }
Ejemplo n.º 3
0
 // CTOR
 public HomeController(IContentsService contentsService, IUserService userService, ILogger <HomeController> logger,
                       IStudentService studentService, IFAQsService faqsService, IOptions <AppConfig> config, IAdminService adminService)
 {
     _contentsService = contentsService;
     _userService     = userService;
     _studentService  = studentService;
     _faqService      = faqsService;
     _config          = config.Value;
     _logger          = logger;
     _adminService    = adminService;
 }
Ejemplo n.º 4
0
 public ContentController(IContentsService contentsService, IContentInfoService contentInfoService, IContentClassesService contentClassesService,
                          IContentImagesService contentImagesService, GeneralFunctions generalFunctions, IMenusService menusService, IMenuInfoService menuInfoService)
 {
     _contentsService       = contentsService;
     _contentInfoService    = contentInfoService;
     _contentClassesService = contentClassesService;
     _contentImagesService  = contentImagesService;
     _generalFunctions      = generalFunctions;
     _menusService          = menusService;
     _menuInfoService       = menuInfoService;
 }
Ejemplo n.º 5
0
 public HomeController(IContentsService contentsService, ICommentsService commentsService, IAttachService attachService)
 {
     _contentsService = contentsService;
     _commentsService = commentsService;
     _attachService   = attachService;
 }
Ejemplo n.º 6
0
 public ArticleController(IContentsService contentsService)
 {
     this._contentsService = contentsService;
 }
Ejemplo n.º 7
0
 public ContentsController(IContentsService contentsService)
 {
     _contentsService = contentsService ?? throw new ArgumentNullException(nameof(contentsService));
 }
Ejemplo n.º 8
0
 public TimeController(IContentsService contentsService)
 {
     _contentsService = contentsService;
 }
Ejemplo n.º 9
0
 public TypesController(IContentsService contentsService)
 {
     _contentsService = contentsService;
 }
Ejemplo n.º 10
0
 public ContentsController(IContentsService contentsService)
 {
     _contentsService = contentsService;
 }
Ejemplo n.º 11
0
 public ContentsController(IContentsService service)
 {
     _service = service;
 }