Esempio n. 1
0
 public UserService(YInsightsContext _db)
 {
     db = _db;
 }
Esempio n. 2
0
 public TopicService(YInsightsContext _db, DocumentDBProvider _docdb)
 {
     db    = _db;
     docdb = _docdb;
 }
Esempio n. 3
0
 public UserArticleService(YInsightsContext _db, DocumentDBProvider _docClient)
 {
     db        = _db;
     docClient = _docClient;
 }
Esempio n. 4
0
 public ReportController(YInsightsContext context, TopicService _topicService, AIService _aiService)
 {
     aiService    = _aiService;
     db           = context;
     topicService = _topicService;
 }