Esempio n. 1
0
 public ReferenceRoomController(IHttpContextAccessor accessor,
                                IHostingEnvironment hostingEnvironment,
                                ITechNoteViewModel techNoteViewModel,
                                ITechNoteService techNoteService,
                                ISmartXRelatedService smartXRelatedService,
                                IDbRecordService dbRecordService,
                                Microsoft.Extensions.Configuration.IConfiguration configuration)
 {
     _techNoteService      = techNoteService;
     _hostingEnvironment   = hostingEnvironment;
     _accessor             = accessor;
     _techNoteViewModel    = techNoteViewModel;
     _smartXRelatedService = smartXRelatedService;
     _configuration        = configuration;
     _dbRecordService      = dbRecordService;
 }
Esempio n. 2
0
 public CommunityController(INoticeViewModel noticeViewModel,
                            IFaqViewModel faqViewModel,
                            INoticeService noticeService,
                            IFaqService faqService,
                            IHttpContextAccessor accessor,
                            IQnaViewModel qnaViewModel,
                            IQnaService qnaService,
                            IHostingEnvironment hostingEnvironment,
                            IDbRecordService dbRecordService,
                            IConfiguration configuration)
 {
     _noticeService      = noticeService;
     _noticeViewModel    = noticeViewModel;
     _faqViewModel       = faqViewModel;
     _faqService         = faqService;
     _accessor           = accessor;
     _qnaViewModel       = qnaViewModel;
     _qnaService         = qnaService;
     _hostingEnvironment = hostingEnvironment;
     _configuration      = configuration;
     _dbRecordService    = dbRecordService;
 }