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:
3 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/BazaReklam/Classes/Repositories

    • Włąściwość: svn:mergeinfo set to
      /branches/AutoShopper/BazaReklam/Classes/Repositories:815-818
      /tags/BazaReklam_1.1.28/BazaReklam/Classes/Repositories:831
  • branches/Abonament/BazaReklam/Classes/Repositories/TitleRepository.cs

    r754 r839  
    1515        public List<Title> FindAllActive() 
    1616        { 
    17             const string query = "select Id, Symb, SYMB2, Max_Rabat, [Tyt Full Name] from [lista tytu³ów] where active=1 ORDER BY Id"; 
     17            const string query = "SELECT Id, Symb, SYMB2, Max_Rabat, [Tyt Full Name], InvoiceProviderId from [lista tytu³ów] where active=1 ORDER BY Id"; 
    1818 
    1919            List<Title> titles = new List<Title>(); 
     
    2828                    while (_reader.Read()) 
    2929                    { 
    30                         titles.Add(new Title(_reader.GetInt32(0), _reader.GetString(1), _reader.GetString(2).Trim(), _reader.GetDouble(3))); 
     30                        titles.Add(new Title(_reader.GetInt32(0), _reader.GetString(1), _reader.GetString(2).Trim(), _reader.GetDouble(3), _reader.GetInt32(5))); 
    3131                    } 
    3232                }