Exemplo n.º 1
0
 public List <AdminMutfakYorum> GetAdminMutfakYorumWithPageNumber(int pageNo)
 {
     return(AdminMutfakYorum.Where(x => x.Deleted == false).OrderByDescending(x => x.Tarih).Skip((pageNo - 1) * 5).Take(5).ToList());
 }
Exemplo n.º 2
0
 public List <AdminMutfakYorum> GetAllAdminMutfakYorum()
 {
     return(AdminMutfakYorum.Where(x => x.Deleted == false).OrderByDescending(x => x.Tarih).ToList());
 }