public ConversationService(IDialogflowService dialogflowService, IConsultantParser consultantParser, IRedisCacheService cache, IMapper mapper)
 {
     _dialogflowService = dialogflowService;
     _consultantParser  = consultantParser;
     _cache             = cache;
     _mapper            = mapper;
 }
 public ConversationService(IDialogflowService dialogflowService, IRedisCacheService cache)
 {
     _dialogflowService = dialogflowService;
     _cache             = cache;
 }