public IActionResult Get(int id) { Comment single = _CommentDal.GetById(id); if (single != null && single.Id > 0) { return(Ok(single)); } else { return(NotFound("Aradığınız kayıt bulunamadı!")); } }