コード例 #1
0
 public SentimentService(
     ISentimentRepository sentimentRepository,
     ILogWrapper logger)
 {
     SentimentRepository = sentimentRepository;
     Logger = logger;
 }
コード例 #2
0
 public SentimentController(ISentimentRepository sentimentRepo)
 {
     _SentimentRepo = sentimentRepo;
 }