update 20211204

This commit is contained in:
2021-12-04 13:07:38 +01:00
parent f0289af9fe
commit 70148e63ce
164 changed files with 24669 additions and 3789 deletions

View File

@@ -20,6 +20,12 @@ namespace BlazorApp.Controller
return dbh.ConvertDataTable<Klasse>(dbh.dsdaten.Tables[0]);
}
public static List<Klasse> GetAllActiveData()
{
dbhelper dbh = new dbhelper();
dbh.Get_Tabledata("Select * from Klasse where aktiv=1", false, true);
return dbh.ConvertDataTable<Klasse>(dbh.dsdaten.Tables[0]);
}
public static List<Klasse> GetByID(int ID)
{
dbhelper dbh = new dbhelper();