- Data:
- 2009-09-30 16:24:43 (17 years ago)
- Lokalizacja:
- branches/Abonament
- Pliki:
-
- 3 zmodyfikowane
-
. (zmodyfikowane) (1 prop)
-
BazaReklam/Classes/Repositories (zmodyfikowane) (1 prop)
-
BazaReklam/Classes/Repositories/TitleRepository.cs (zmodyfikowane) (2 diffs)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
branches/Abonament
- Property svn:mergeinfo
-
old new 1 /branches/AutoShopper:815-818 1 2 /branches/ReklamaReorganizacja:568-731 2 /trunk:708-758,760-809 3 /tags/BazaReklam_1.1.28:831 4 /trunk:708-758,760-838
-
- Property svn:mergeinfo
-
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
-
Włąściwość:
svn:mergeinfo set
to
-
branches/Abonament/BazaReklam/Classes/Repositories/TitleRepository.cs
r754 r839 15 15 public List<Title> FindAllActive() 16 16 { 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"; 18 18 19 19 List<Title> titles = new List<Title>(); … … 28 28 while (_reader.Read()) 29 29 { 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))); 31 31 } 32 32 }
