Beispiel #1
0
 public Fach(int id)
 {
     var rst = new FachTableAdapter().GetDataById(id);
     if (rst.Count == 1)
     {
         this.data = rst[0];
     }
     else
     {
         throw new InvalidOperationException("Konstruktor Kurs: Ungültige ID.");
     }
 }
Beispiel #2
0
 public Fach(diNoDataSet.FachRow f)
 {
     data = f;
 }