public async Task <IActionResult> GetNews()
        {
            var result = await _infoService.GetNews();

            return(Ok(result));
        }