Update Test Gitlab-Wechsel

This commit is contained in:
2021-08-26 12:13:19 +02:00
parent 1746401541
commit f0289af9fe
2435 changed files with 6019 additions and 1780924 deletions

View File

@@ -30,7 +30,7 @@ namespace BlazorApp.Controller
public static List<Klasse> GetByLehrerID(int ID)
{
dbhelper dbh = new dbhelper();
dbh.Get_Tabledata("Select * from Klasse where lehrerid=" + ID.ToString(), false, true);
dbh.Get_Tabledata("Select * from Klasse where aktiv=1 and lehrerid=" + ID.ToString(), false, true);
return dbh.ConvertDataTable<Klasse>(dbh.dsdaten.Tables[0]);
}