update nach Schuelererfassung
This commit is contained in:
38
BlazorApp - Kopie (4)/Pages/Reporting/Reporting.razor.cs
Normal file
38
BlazorApp - Kopie (4)/Pages/Reporting/Reporting.razor.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using FastReport;
|
||||
using FastReport.Web;
|
||||
|
||||
|
||||
namespace BlazorApp.Pages.Reporting
|
||||
{
|
||||
public partial class Reporting
|
||||
{
|
||||
readonly string directory;
|
||||
const string DEFAULT_REPORT = "userliste.frx";
|
||||
string userid = "";
|
||||
//Report Report { get; set; }
|
||||
//DataSet DataSet { get; } = new DataSet();
|
||||
|
||||
|
||||
protected override void OnParametersSet()
|
||||
{
|
||||
base.OnParametersSet();
|
||||
|
||||
|
||||
}
|
||||
|
||||
public Reporting()
|
||||
{
|
||||
|
||||
BlazorApp.Helper.dbhelper dbh = new Helper.dbhelper();
|
||||
DataSet.Tables.Add(dbh.Get_Tabledata("Select * from AspNetUsers", false, true).Copy());
|
||||
DataSet.Tables[0].TableName = "Daten";
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user