public List <KullaniciYorum> GetKullaniciYorumWithPageNumber(int pageNo)
 {
     return(KullaniciYorum.Where(x => x.Deleted == false).OrderByDescending(x => x.Tarih).Skip((pageNo - 1) * 5).Take(5).ToList());
 }
 public List <KullaniciYorum> GetAllKullaniciYorum()
 {
     return(KullaniciYorum.Where(x => x.Deleted == false).OrderByDescending(x => x.Tarih).ToList());
 }