Pokaż
Ignoruj:
Data:
2009-07-31 10:46:09 (17 years ago)
Autor:
marek
Opis:

re #195 - merged with latest trunk

Lokalizacja:
branches/Emisje
Pliki:
2 zmodyfikowane

Legenda:

Bez zmian
Dodane
Usunięte
  • branches/Emisje

    • Property svn:mergeinfo
      •  

        old new  
        11/branches/ReklamaReorganizacja:568-731 
         2/trunk:774-795 
  • branches/Emisje/Wierszowki/Wierszowki.Web/Controllers/ReportController.cs

    r752 r796  
    4040        } 
    4141 
    42         public ActionResult All() 
     42        public ActionResult All(int year, int month, int user) 
    4343        { 
    44             var items = _context.MagazineItems.ToList(); 
     44            var items = _repository.Find(m => m.Date.Month == month && m.Date.Year == year && m.CreatedBy == user) 
     45                                   .OrderByDescending(m => m.UpdatedOn).ToList(); 
    4546            return View(items); 
    4647        }