You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
858 B
39 lines
858 B
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";
|
|
|
|
}
|
|
}
|
|
}
|
|
|