Pokaż
Ignoruj:
Data:
2009-09-30 16:24:43 (17 years ago)
Autor:
marek
Opis:

re #184 - merged with latest trunk

Lokalizacja:
branches/Abonament
Pliki:
2 zmodyfikowane

Legenda:

Bez zmian
Dodane
Usunięte
  • branches/Abonament

    • Property svn:mergeinfo
      •  

        old new  
         1/branches/AutoShopper:815-818 
        12/branches/ReklamaReorganizacja:568-731 
        2 /trunk:708-758,760-809 
         3/tags/BazaReklam_1.1.28:831 
         4/trunk:708-758,760-838 
  • branches/Abonament/Wierszowki/Wierszowki.Web/Controllers/ReportController.cs

    r795 r839  
    3333        public ActionResult Index() 
    3434        { 
     35 
    3536            var viewData = new ReportViewData 
    3637                               { 
    37                                    Authors = _context.GetAuthors().OrderBy(a => a.FullName).ToList() 
     38                                   Authors = _context.GetAuthors().OrderBy(a => a.FullName).ToList(), 
     39                                   EmploymentTypeList =  new SelectList(_context.GetEmploymentTypes().ToList(),"Id","Name"), 
     40                                   UserList = new SelectList(_context.GetUsers().OrderBy(u => u.FirstName).ToList(),"Id","FullName") 
    3841                               }; 
    3942            return View(viewData);