public async Task <IActionResult> Get(int id)
 {
     return(Ok(await _newsAppService.GetByIdAsync(id)));
 }