public IActionResult GetAll()
        {
            IEnumerable <Word> words = dataRepository.GetAll();

            return(Ok(words));
        }