Pokaż
Ignoruj:
Data:
2008-12-28 02:53:56 (17 years ago)
Autor:
dorota
Opis:
 
Pliki:
1 zmodyfikowane

Legenda:

Bez zmian
Dodane
Usunięte
  • Baza Reklam 2 - Faktury/SLOWNIKDataSet.cs

    r2 r23  
    1 namespace Baza_Reklam { 
     1using System; 
     2using System.Data; 
     3 
     4namespace Baza_Reklam { 
    25 
    36 
    47    partial class SLOWNIKDataSet 
    58    { 
    6  
     9        partial class NRDataTable 
     10        { 
     11            public DateTime dataWydania(string tytul, short nr) 
     12            { 
     13                DataRow[] rows = this.Select("tyt='" + tytul + "' and nrw=" + nr); 
     14                if (rows.Length > 0) 
     15                { 
     16                    return (DateTime)rows[0]["DATA_W"]; 
     17                } 
     18                return DateTime.Today; 
     19            } 
     20        } 
    721 
    822        partial class Kursy_WalutDataTable 
    923        { 
     24             
    1025        } 
    1126    }