public IActionResult AddHashtagHistory([FromBody] HashtagHistoryModel model)
        {
            var command = new AddHashtagHistoryCommand(model);

            _commandDispatcher.Execute(command);
            return(Ok());
        }
 public AddHashtagHistoryCommand(HashtagHistoryModel _hashtagHistoryModel)
 {
     hashtagHistoryModel = _hashtagHistoryModel;
 }