public async Task <IActionResult> AddSection(string title)
        {
            await _esRepo.SaveSection(new Entity.HintSection(title));

            return(Ok());
        }