public SentimentService(
     ISentimentRepository sentimentRepository,
     ILogWrapper logger)
 {
     SentimentRepository = sentimentRepository;
     Logger = logger;
 }
 public SentimentController(ISentimentRepository sentimentRepo)
 {
     _SentimentRepo = sentimentRepo;
 }