public async Task GetAllWords()
        {
            var sections = await _esRepo.GetHintSections();

            var items = await _esRepo.GetAllHintWords("hello");
        }
 public async Task <IActionResult> GetSections()
 {
     return(Ok(await _esRepo.GetHintSections()));
 }